0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00
mpv/TOOLS/menc2pass
atmos4 232d6a394b Small two pass mencoder helper script in perl.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3025 b3059339-0415-0410-9bf9-f77b7e298cf2
2001-11-20 13:02:56 +00:00

20 lines
605 B
Perl
Executable File

#!/usr/bin/perl -w
# Helper script to ease MEncoder two pass encoding
# Copyleft 2001 by Felix Buenemann <atmosfear@users.sourceforge.net>
# This files comes udner 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"
}