[Mplayer-cvslog] CVS: main/TOOLS menc2pass,NONE,1.1
Atmosfear
atmos4 at mplayer.dev.hu
Tue Nov 20 14:02:58 CET 2001
- Previous message: [Mplayer-cvslog] CVS: main .cvsignore,1.7,1.8
- Next message: [Mplayer-cvslog] CVS: main/DOCS/Hungarian bugreports.html,1.10,1.11 codecs.html,1.22,1.23 documentation.html,1.60,1.61 faq.html,1.28,1.29 formats.html,1.1,1.2 mplayer.1,1.11,1.12 sound.html,1.11,1.12 video.html,1.24,1.25
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/TOOLS
In directory mplayer:/var/tmp.root/cvs-serv15009
Added Files:
menc2pass
Log Message:
Small two pass mencoder helper script in perl.
--- NEW FILE ---
#!/usr/bin/perl -w
# Helper script to ease MEncoder two pass encoding
# Copyleft 2001 by Felix Buenemann <atmosfear at 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, at ARGV," -pass $i")
and die "MEncoder pass $i failed!\n"
}
- Previous message: [Mplayer-cvslog] CVS: main .cvsignore,1.7,1.8
- Next message: [Mplayer-cvslog] CVS: main/DOCS/Hungarian bugreports.html,1.10,1.11 codecs.html,1.22,1.23 documentation.html,1.60,1.61 faq.html,1.28,1.29 formats.html,1.1,1.2 mplayer.1,1.11,1.12 sound.html,1.11,1.12 video.html,1.24,1.25
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list