[MPlayer-cvslog] CVS: main/TOOLS README, 1.13, 1.14 qepdvcd.sh, 1.1, 1.2

Diego Biurrun CVS syncmail at mplayerhq.hu
Thu Nov 17 01:47:27 CET 2005


CVS change done by Diego Biurrun CVS

Update of /cvsroot/mplayer/main/TOOLS
In directory mail:/var2/tmp/cvs-serv22095/TOOLS

Modified Files:
	README qepdvcd.sh 
Log Message:
spelling/grammar


Index: README
===================================================================
RCS file: /cvsroot/mplayer/main/TOOLS/README,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- README	16 Nov 2005 19:15:27 -0000	1.13
+++ README	17 Nov 2005 00:47:25 -0000	1.14
@@ -190,15 +190,15 @@
 
 Author:       Reynaldo H. Verdejo Pinochet
 
-Description:  anything supported to vcd/svcd pal/ntsc converter 
+Description:  anything supported to VCD/SVCD PAL/NTSC converter
 
 Usage:        qepdvcd.sh file <options>
-              run with no args to see the list of options
+              Run with no arguments to see the list of options.
+
+Note:         You will need vcdimager/cdrecord to master/burn the resulting
+              files.
+
 
-Note:         you will need vcdimager/cdrecord to master/burn the resulting
-              files
-			  
-			  
 Tech scripts in the TOOLS dir
 -----------------------------
 

Index: qepdvcd.sh
===================================================================
RCS file: /cvsroot/mplayer/main/TOOLS/qepdvcd.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qepdvcd.sh	16 Nov 2005 19:15:27 -0000	1.1
+++ qepdvcd.sh	17 Nov 2005 00:47:25 -0000	1.2
@@ -2,9 +2,9 @@
 #
 # QEPDVCD
 #
-# Most of this stuff comes straight from mplayer documentation
-# options are limited only to an small usesfull subset, if you 
-# want more control, RTFM and DIY
+# Most of this stuff comes straight from MPlayer documentation.
+# Options are limited only to a small useful subset, if you 
+# want more control, RTFM and DIY.
 #
 # Version:          0.1
 #
@@ -55,10 +55,10 @@
 echo "-a	Audio bitrate in kbps [224]"
 echo "-v	Video bitrate in kbps [2000 For SVCD, 1150 For VCD]"
 echo "-n	Norm NTSC|PAL [NTSC]"
-echo "-d	Divide/splits movie at given times time1:time2:... [No split]"
+echo "-d	Divide/split movie at given times time1:time2:... [no split]"
 echo "-s	Shitty TV screen tolerance %, afects subtitle positioning [85]"
 echo "-u	Subtitle file name [No subtitle]"
-echo "-o	Output Basename [mencodedvcd]"
+echo "-o	Output basename [mencodedvcd]"
 echo ""
 echo "In case you want to use -a/-v please read:"
 echo "http://www.mplayerhq.hu/DOCS/HTML/en/menc-feat-vcd-dvd.html"
@@ -83,7 +83,7 @@
 for i in vcdimager cdrecord; do
 	if [ -z "`which $i`" ]; then
 		echo "[WARNING] $i not found in $PATH!"
-		echo "youre likely to need it after we finish"
+		echo "You'll likely need it after we finish."
 		exit 1
 	fi
 done
@@ -94,7 +94,7 @@
 
 if [ $# -lt 1 ]; then
 	echo ""
-	echo "[ERROR] Input filename parameter is mandatory"
+	echo "[ERROR] Input filename parameter is mandatory."
 	echo ""
 	usage
 	exit 1
@@ -155,7 +155,7 @@
 done
 
 echo ""
-echo "[STATUS] Will re-encode using the following params:"
+echo "[STATUS] Will re-encode using the following parameters:"
 echo ""
 for i in $OPTIONS ; do
 	echo "$i ${!i}";
@@ -167,20 +167,20 @@
 
 if [ $TARGET = "svcd" ]; then
 	if [ $ABPS -gt 384 ]; then
-		echo "[ERROR] SVCD max abitrate is 384kbps"
+		echo "[ERROR] SVCD maximum abitrate is 384kbps."
 		exit 1
 	fi
 	if [ $VBPS -gt 2600 ]; then
-		echo "[ERROR] SVCD max vbitrate is 2600kbps"
+		echo "[ERROR] SVCD maximum vbitrate is 2600kbps."
 		exit 1
 	fi
 else [ $TARGET = "vcd" ]
 	if [ $ABPS -eq 224 ]; then
-		echo "[ERROR] VCD abitrate must be 224kbps"
+		echo "[ERROR] VCD abitrate must be 224kbps."
 		exit 1
 	fi
 	if [ $VBPS -gt 1150 ]; then
-		echo "[ERROR] VCD max vbitrate is 1150kbps"
+		echo "[ERROR] VCD maximum vbitrate is 1150kbps."
 		exit 1
 	fi
 fi
@@ -240,9 +240,9 @@
 else
 	if [ -e $EDLFILENAME ]; then
 		echo "[ERROR]"
-		echo "-d option needs to generate a temporary file called"
-		echo "$EDLFILENAME you already have one on this dir, please"
-		echo "remove/rename it and run $MYNAME again."
+		echo "The -d option needs to generate a temporary file called"
+		echo "$EDLFILENAME. You already have one in this directory,"
+		echo "please remove/rename it and run $MYNAME again."
 		echo ""
 		exit 1
 	else
@@ -281,11 +281,11 @@
 
 mencoder -ovc lavc -oac lavc -vf expand=:::::$RATIOX/$RATIOY:1,scale=$SCALEX:$SCALEY,harddup -srate 44100 -af lavcresample=44100 -lavcopts acodec=mp2:abitrate=$ABPS:vcodec=$VCODEC:vbitrate=$VBPS:keyint=$KEYINT:mbd=$ENCQ:vrc_buf_size=$VRCBUFSIZE:vrc_maxrate=$VRCMAXRATE:vrc_minrate=$VRCMINRATE:aspect=$RATIOX/$RATIOY -of mpeg -mpegopts format=$FORMAT$TELECINE -sub $SUBTITLESTRING -subpos $TOLERANCE -subwidth $TOLERANCE -ofps $OFPS $TIMESTRING -o $NEWNAME $INPUTFILENAME
 
-echo "Encoding of $NEWNAME Finished"
-echo "Run vcdimager -t svcd/vcd $NEWNAME and burn with cdrecord"
+echo "Encoding of $NEWNAME finished."
+echo "Run vcdimager -t svcd/vcd $NEWNAME and burn with cdrecord."
 
 done
 
 echo "$(($CICLES+1)) VCD/SVCD file(s) created!!!"
-echo "Happy to be of some help ;-) have fun"
+echo "Happy to be of some help ;-) have fun."
 exit 0




More information about the MPlayer-cvslog mailing list