files/bin/convert-to-ogg
2010-07-21 12:45:43 -04:00

12 lines
156 B
Perl
Executable File

#!/usr/bin/perl -w
use strict;
foreach my $arg (@ARGV)
{
my $out = $arg;
$out =~ s/\....$//;
system('oggenc', '-b', '192', '-o', "$out.ogg", $arg);
}