2001-11-20 13:02:56 +00:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
# Helper script to ease MEncoder two pass encoding
|
|
|
|
# Copyleft 2001 by Felix Buenemann <atmosfear@users.sourceforge.net>
|
2003-01-29 16:48:36 +00:00
|
|
|
# This file comes under GPL, see http://www.gnu.org/copyleft/gpl.html for more
|
2001-11-20 13:02:56 +00:00
|
|
|
# information on it's licensing.
|
|
|
|
use strict;
|
|
|
|
my $mencoder="mencoder"; # Path to MEncoder (including binary name)
|
|
|
|
|
|
|
|
die <<"EOF" unless @ARGV;
|
|
|
|
Menc2Pass: No arguments given!
|
|
|
|
Please give all usual encoding parameters you would give to mencoder, but leave
|
2003-02-03 13:04:24 +00:00
|
|
|
away the pass=<n> suboption.
|
2001-11-20 13:02:56 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
for(my $i=1; $i<=2; $i++) {
|
2003-02-03 13:04:24 +00:00
|
|
|
my $parm="";
|
|
|
|
foreach my $val (@ARGV) {
|
|
|
|
if($val =~ /-lavcopts/) {
|
|
|
|
$parm.="$val vpass=$i:";
|
|
|
|
} elsif($val =~ /-(divx4)|(xvid)opts/) {
|
|
|
|
$parm.="$val pass=$i:";
|
|
|
|
} else {
|
|
|
|
$parm.="$val ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print "Running $mencoder $parm\n";
|
|
|
|
system($mencoder,$parm)
|
|
|
|
and die "MEncoder pass $i failed!\n"
|
2001-11-20 13:02:56 +00:00
|
|
|
}
|
|
|
|
|