view TOOLS/menc2pass @ 9210:fc78c4942484

keep reserved bits zeroed, test & bug report by andee (at irc.freenode.net)
author iive
date Sat, 01 Feb 2003 20:15:48 +0000
parents 6b1bdda5ab76
children 9733351ea3e5
line wrap: on
line source

#!/usr/bin/perl -w
# Helper script to ease MEncoder two pass encoding
# Copyleft 2001 by Felix Buenemann <atmosfear@users.sourceforge.net>
# This file comes under GPL, see http://www.gnu.org/copyleft/gpl.html for more
# 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
away the -pass switch.
EOF

for(my $i=1; $i<=2; $i++) {
	system($mencoder,@ARGV," -pass $i")
		and die "MEncoder pass $i failed!\n"
}