summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-20 13:02:56 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-20 13:02:56 +0000
commit232d6a394b7d3a24b7a827773fea9584f64d64da (patch)
tree0d6cb73e4de55e2217ad853f87b2160b3b267c9d /TOOLS
parentd2174c8047f6da354a49df3a29d775facf1ebbd5 (diff)
downloadmpv-232d6a394b7d3a24b7a827773fea9584f64d64da.tar.bz2
mpv-232d6a394b7d3a24b7a827773fea9584f64d64da.tar.xz
Small two pass mencoder helper script in perl.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3025 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rwxr-xr-xTOOLS/menc2pass19
1 files changed, 19 insertions, 0 deletions
diff --git a/TOOLS/menc2pass b/TOOLS/menc2pass
new file mode 100755
index 0000000000..f51bd70ab7
--- /dev/null
+++ b/TOOLS/menc2pass
@@ -0,0 +1,19 @@
+#!/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"
+}
+