Newsgroups: gmane.comp.video.transcode.user Date: Tue, 13 Dec 2005 08:26:40 -0800
Newsgroups: gmane.comp.video.transcode.user Date: Tue, 13 Dec 2005 08:26:40 -0800
Hi All,
There may be versions of AviToVob bouncing around that are heavily modified and which the author(s) thereof did not identify as their own handiwork, and so they appear to have been written by me…
The only version of AviToVob that I maintain is the version found at:
Phil Ehrens
any2vob-0.28.sh 02-Sep-2005 07:30 60K
Any2Vob-0.28 Usage: ./any2vob-0.28.sh [options] -i [input_file(s)]
General options: --format=[pal|ntsc] Format to encode to (Default: PAL) --preview=[yes|no] Preview video while encoding (slower) (Default: No) --audio_format=[ac3|mp2|pcm16|pcm24] Audio format to encode to (Default: AC3) --surround=[yes|no] Encode audio track to 5.1 surround sound (Default: Enabled) --compress=[yes|no] Halve the encoding time & encoded filesize (Default: Disabled) --aspect=[4:3|16:9] Aspect ratio to encode to (Default: 16:9) --keep_dts=[yes|no] Preserve DTS audio track if detected (Default: Yes) --log=[yes|no] Turn logging on (any2vob.log) (Default: Disabled)
Subtitle options: -s [subtitle file(s)] Encode external subtitle file(s) --subfont=[fontname.ttf] Font to use in subtitles (Default: Vera.ttf) --subfontsize=[fontsize] Set fontsize in subtitles (Default: 18.0) --subcharacterset=[ISO-codepage] Set subtitle language codepage for your country (Default: ISO8859-1)
Miscellaneous options: --workdir=[/path/to/dir] Directory to use for temp files & final VOBS (Default: ./tmp_any2vob/) --calc Estimate total DVD disk space that will be used (any2vob --calc -i file1.avi file2.avi) --deinterlace=[yes|no] Deinterlace video (Default: No) --overscan=[yes|no] Allow for NTSC overscan (Default: Yes) --skip_comm=[yes|no] Skip commercials for MythTV recorded video (Default: No) --mpegts_allpids=[yes|no] Encode all PIDs from MPEG-TS capture files (Default: No (First PID only))
NOTE:
Batch input_file conversion is not supported when specifying external subtitle file(s) with the '-s' option, all other input_files specified after the first input_file will be ignored
Encoding to DTS audio is not supported, however if a DTS audio track is found it will be preserved, unless otherwise specified with '—keep_dts=no', in which case it will be converted to either AC3 or the format specified with '—audio_format=…'
MP2 & PCM audio format encodings are strictly stereo only
#!/bin/sh # Script to automatically convert DVD9 to DVD5 discs # Preserving all subtitles, menus & audio tracks # Supports both main feature & episodic DVDs # Author: Rick Harris, rickfharris@xxxxxxxxxxxx # # Required: # Eject -> http://eject.sourceforge.net/[] # Lsdvd -> http://acidrip.thirtythreeandathird.net[] # Mjpegtools -> http://mjpeg.sourceforge.net/[] # Transcode (CVS) -> http://zebra.fh-weingarten.de/~transcode/#cvs[] # Mplayer -> http://www.mplayerhq.hu[] # Xine (optional) -> http://xine.sourceforge.net/[] # Dvdauthor (v0.6.9) -> http://sourceforge.net/projects/dvdauthor/[] # Dvd+rw-tools -> http://fy.chalmers.se/~appro/linux/DVD+RW/[] # Twice the disc size in free hard-drive space (approx. 15GB) # # Usage: # 'cd' into any directory where the above hard-drive space is present # Insert DVD into DVD-Rom drive, do not mount it (this includes supermount) # Run ./dvd9todvd5.sh # # Use the '--noclean' flag to disable removal of process files when finished # # Use the '--omit-titleset' flag followed by a comma seperated list of titleset numbers # and title numbers that you wish to leave out. # Example: ./dvd9todvd5.sh --omit-titleset 02_003,11,08_004,15,04 # to leave out titleset numbers: 2_title3, 11, 8_title4, 15 and 4 # # End result will be in the directory 'video/<disc_title>/DVD/' # # Optionally, test with 'xine dvd:/full/path/to/video/<disc_title>/DVD/VIDEO_TS/' # # Use 'growisofs -Z /dev/dvd -dvd-video DVD/' to burn to DVD5(4.7GB) Disc # # NOTE: Disc menus are currently experimental, and so are disabled by default. # # If you want to enable them, then add the '--enable-menus' flag. # # You will have to hand-edit the created 'dvdauthor.xml' to add in button commands, # as dvdunauthor does not currently do this. # eg. <button> jump menu 2; <button/> # However, you should still be able to access all the different Chapters, Titles, Subtitles # & Audio Tracks using your DVD Player's system menus if you choose not to --enable-menus. # # DVDUnauthor has a built-in limit of 10 titlesets per Disc (some Discs have more) # Here is a patch that will disable this limit (for v0.6.9) -> # http://mightylegends.zapto.org/dvd/dvdunauthor.c.diff[] # # Most frequently asked question: # Q: How long does it take ? # A: Depends on your system specs, but as a guide, the whole process takes approx. # 2.5 hours for an average 7GB DVD Disc with 1 main title that has # 3 subtitles & 2 audio tracks on an AMD XP+ 1800 w/512MB RAM. # Able to remove the DVD Disc after the 1st hour approx. # # This script has only proven to work with DVDs that have been authored to comply # with DVD standards. Any originally mis-authored or scratched DVDs usually fail. # IE. No guarantees 8^) DEV="/dev/dvd" WORKDIR="video" DISC_NAME=`lsdvd |grep "Disc Title"|cut -d " " -f 3` MIN_SHRINK_SIZE="100000" # 100MB Minimum size of pre-processed .vobs to shrink DVD_DIR="DVD" CLEAN="yes" MENUS="no" case "$1" in '--omit-titleset') OMIT_TITLE=$2 ;; '--noclean') CLEAN="no" ;; '--enable-menus') MENUS="yes" ;; esac case "$2" in '--omit-titleset') OMIT_TITLE=$3 ;; '--noclean') CLEAN="no" ;; '--enable-menus') MENUS="yes" ;; esac case "$3" in '--omit-titleset') OMIT_TITLE=$4 ;; '--noclean') CLEAN="no" ;; '--enable-menus') MENUS="yes" ;; esac case "$4" in '--omit-titleset') OMIT_TITLE=$5 ;; '--noclean') CLEAN="no" ;; '--enable-menus') MENUS="yes" ;; esac if [ ! -d $WORKDIR/$DISC_NAME ] ; then mkdir -p $WORKDIR/$DISC_NAME && cd $WORKDIR/$DISC_NAME else cd $WORKDIR/$DISC_NAME fi if [ ! -d $DVD_DIR ] ; then mkdir -p $DVD_DIR fi mount /dev/dvd $DVD_DIR -o ro,users if [ -z `mount |grep $DVD_DIR` ] 2> /dev/null ; then eject $DEV exit else DISC_SIZE=`du -s $DVD_DIR |awk '{print $1}'` DIR_SIZE=`df ./ |grep /dev |awk '{print $4}'` ACTUAL=`df -h ./ |grep /dev |awk '{print $4}'` let PROCESS_SIZE=$DISC_SIZE/1024/1024*2 if [ $DIR_SIZE -lt $DISC_SIZE ] ; then echo -e '\e[1;31m'"Error: Only $ACTUAL free hard-drive space available"'\e[m' echo -e '\e[1;31m'"You will need at least $PROCESS_SIZE G free hard-drive space to convert this Disc"'\e[m' umount $DVD_DIR exit fi fi umount $DVD_DIR dvd_extract () { if [ -e dvdauthor.xml ] ; then sub_extract else echo -e '\e[1;33m'"Disc Title: $DISC_NAME"'\e[m' echo "" echo -e '\e[1;31mDe-crypting & Copying DVD to Hard-drive, please be patient...\e[m' echo "Percentage updates every 1 minute" dvdunauthor $DEV 1> /dev/null 2> /dev/null & let PROGRESS=`du -s |awk '{print $1}'` let DISC_SIZE_PROG=$DISC_SIZE-700 while [ $PROGRESS -lt $DISC_SIZE_PROG ]; do let PROGRESS=`du -s |awk '{print $1}'` PROG_PERCENT=$(bc -l << EOF scale=3 ($PROGRESS/$DISC_SIZE*100) ) echo "$PROG_PERCENT% of copy completed" sleep 60s done echo -e '\e[1;32mDone...\e[m' sub_extract fi } sub_extract () { if [ $DISC_SIZE -le 4700000 ]; then echo -e '\e[1;31mDisc is not a DVD9 type, no conversion necessary\e[m' echo -e '\e[1;31mSkipping to DVD authoring\e[m' if [ $MENUS = "yes" ]; then dvd_author_menus else dvd_author fi fi rm vobs.tmp 1> /dev/null 2> /dev/null for i in `ls vob_*` ; do let VOB_SIZE=`du -s $i |awk '{print $1}'` VOB_NAME=`du -s $i |awk '{print $2}'` if [ $VOB_SIZE -ge $MIN_SHRINK_SIZE ] ; then echo $VOB_NAME >> vobs.tmp fi done let VOB_COUNT=`wc -l vobs.tmp |awk '{print $1}'` TITLE_NO=1 if [ -d subtitles ]; then audio_extract else mkdir -p subtitles && cd subtitles while [ $TITLE_NO -le $VOB_COUNT ]; do VOB=`cat ../vobs.tmp |head -n $TITLE_NO |tail -n1` VOB_ID=`cat ../vobs.tmp |head -n $TITLE_NO |tail -n1 |cut -d _ -f 2` mplayer dvd://$VOB_ID -vo null -ao null -frames 0 -v 2>&1|grep sid|awk '{print $6"_"$8}' > $VOB-subs_lang.tmp mplayer dvd://$VOB_ID -vo null -ao null -frames 0 -v 2>&1|grep sid|awk '{print $6}' > $VOB-subs_id.tmp let SUB_NOS=`wc -l $VOB-subs_id.tmp |awk '{print $1}'` LINE=1 while [ $LINE -le $SUB_NOS ]; do LANG=`cat $VOB-subs_lang.tmp |head -n $LINE |tail -n1` echo -e '\e[1;31m'"Extracting subtitle $LANG from $VOB"'\e[m' SUB_ID=`cat $VOB-subs_id.tmp |head -n $LINE |tail -n1` mkdir -p $VOB-sub-$LANG && cd $VOB-sub-$LANG spuunmux -o $LANG -s $SUB_ID ../../../$DISC_NAME/$VOB 2> /dev/null cd ../ && echo -e '\e[1;32mDone...\e[m' let LINE=LINE+1 done let TITLE_NO=TITLE_NO+1 done cd ../ audio_extract fi } audio_extract () { TITLE_NO=1 if [ -d audio ] ; then vob_shrink else mkdir -p audio && cd audio while [ $TITLE_NO -le $VOB_COUNT ]; do VOB=`cat ../vobs.tmp |head -n $TITLE_NO |tail -n1` VOB_ID=`cat ../vobs.tmp |head -n $TITLE_NO |tail -n1 |cut -d _ -f 2` mplayer dvd://$VOB_ID -vo null -ao null -frames 0 -v 2>&1 |grep "audio stream" |grep language |cut -d ] -f 2 > $VOB-audio_track.tmp tcprobe -i ../$VOB 2>&1 |grep "audio track" > $VOB-audio_id.tmp let AUD_NOS=`wc -l $VOB-audio_id.tmp |awk '{print $1}'` LINE=1 STREAM_ID=0 while [ $LINE -le $AUD_NOS ]; do TRACK=`cat $VOB-audio_track.tmp |head -n $LINE |tail -n1` echo -e '\e[1;31m'"Extract$TRACK from $VOB"'\e[m' AUD_ID=`cat $VOB-audio_id.tmp |head -n $LINE |tail -n1 |awk '{print $4}'` AUD_TYPE=`cat $VOB-audio_track.tmp |head -n $LINE |tail -n1 |cut -d : -f 3|awk '{print $1}'` tcextract -i ../$VOB -a $AUD_ID -x $AUD_TYPE -t vob > $VOB-audio-$STREAM_ID.$AUD_TYPE let STREAM_ID=STREAM_ID+1 echo -e '\e[1;32mDone...\e[m' let LINE=LINE+1 done let TITLE_NO=TITLE_NO+1 done cd ../ vob_shrink fi } vob_shrink () { eject $DEV echo -e '\e[1;33mIt is now safe to remove the DVD disc\e[m' echo -e '\e[1;33mAll other processing will be done from the Hard-drive\e[m' QUANT_FACT=$(bc -l << EOF scale = 3 ($DISC_SIZE/4300000) EOF ) for VOB in `cat vobs.tmp` ; do echo -e '\e[1;31m'"De-muxing $VOB ready for shrinking"'\e[m' tcextract -i $VOB -x mpeg2 -t vob > $VOB.m2v rm $VOB echo -e '\e[1;31m'"Resizing $VOB using a factor of $QUANT_FACT"'\e[m' tcrequant -i $VOB.m2v -f $QUANT_FACT -o $VOB-quant.m2v rm $VOB.m2v echo -e '\e[1;32mDone...\e[m' done sub_merge } sub_merge () { for VOB in `cat vobs.tmp` ; do AUD_SUBS=`ls audio/$VOB-audio-*` echo -e '\e[1;31m'"Merging audio track(s) into $VOB"'\e[m' mplex -f8 -o $VOB.mpg $VOB-quant.m2v $AUD_SUBS 1> /dev/null 2> /dev/null rm $VOB-quant.m2v echo -e '\e[1;32mDone...\e[m' done TITLE_NO=1 let VOB_COUNT=`wc -l vobs.tmp |awk '{print $1}'` while [ $TITLE_NO -le $VOB_COUNT ]; do VOB=`cat vobs.tmp |head -n $TITLE_NO |tail -n1` let SUB_NOS=`wc -l subtitles/$VOB-subs_id.tmp |awk '{print $1}'` LINE=1 while [ $LINE -le $SUB_NOS ]; do cd subtitles LANG=`cat $VOB-subs_lang.tmp |head -n $LINE |tail -n1` SUB_ID=`cat $VOB-subs_id.tmp |head -n $LINE |tail -n1` cd $VOB-sub-$LANG echo -e '\e[1;31m'"Merging subtitle $LANG into $VOB"'\e[m' spumux -s $SUB_ID $LANG.xml < ../../$VOB.mpg > $VOB-temp.mpg 2> /dev/null rm ../../$VOB.mpg mv $VOB-temp.mpg ../../$VOB.mpg cd ../../ && echo -e '\e[1;32mDone...\e[m' let LINE=LINE+1 done mv $VOB.mpg $VOB let TITLE_NO=TITLE_NO+1 done if [ $MENUS = "yes" ] ; then dvd_author_menus else dvd_author fi } omit_title () { if [ -n $OMIT_TITLE ] ; then for i in `echo $OMIT_TITLE |awk -F"," '{for (i=1; i<=NF; i++) print $i}' |grep _` ; do echo "vob_"$i"t.vob" >> omit_vobs.tmp ; done for i in `echo $OMIT_TITLE |awk -F"," '{for (i=1; i<=NF; i++) print $i}' |grep -v _` ; do echo "vob_"$i"_001t.vob" >> omit_vobs.tmp ; done for i in `cat omit_vobs.tmp` 2> /dev/null ; do let TITLE_START=`sed -n "/"$i"/{=;p;q}" dvdauthor.xml |head -n1`-3 sed -e "$TITLE_START,/\/titleset/d" dvdauthor.xml > dvdauthor-temp.xml mv dvdauthor-temp.xml dvdauthor.xml done else return 1 fi } sub_xml () { if [ -d subtitles ] ; then cd subtitles if [ -z `ls -dv */` 2> /dev/null ] ; then cd ../ return 1 else cp ../dvdauthor.xml dvdauthor-sub.xml for i in `ls -dv */` 2> /dev/null ; do VOB=`echo $i |cut -d - -f1` LANG=`echo $i |cut -d _ -f4 |cut -d / -f1` XML_LINE=`grep -C1 $VOB dvdauthor-sub.xml |awk '{print $1}' |head -n1` let INSERT_NO=`sed -n "/$VOB/{=;p;q}" dvdauthor-sub.xml |head -n1`-1 INSERT="$INSERT_NO"i if [ $XML_LINE = "<pgc>" 2> /dev/null ] ; then sed "$INSERT\<subpicture lang=\"$LANG\" />" dvdauthor-sub.xml > output.xml mv output.xml dvdauthor-sub.xml fi done mv dvdauthor-sub.xml ../dvdauthor.xml cd ../ fi return 1 else return 1 fi } aud_xml () { if [ -d audio ] ; then cd audio cp ../dvdauthor.xml dvdauthor-aud.xml for i in `ls -vr *audio_track*` ; do TRACK_NO=1 VOB=`echo $i |cut -d - -f1` TRACKS_TOTAL=`cat $VOB-audio_track.tmp |wc -l |awk '{print $1}'` while [ $TRACK_NO -le $TRACKS_TOTAL ]; do FORMAT=`cat $VOB-audio_track.tmp |head -n $TRACK_NO |tail -n1 |awk '{print $6}'` TYPE=`cat $VOB-audio_track.tmp |head -n $TRACK_NO |tail -n1 |awk '{print $7}'` LANG=`cat $VOB-audio_track.tmp |head -n $TRACK_NO |tail -n1 |awk '{print $9}'` if [ $LANG = "unknown" ] ; then LANG="en" fi if [ $TYPE = "(5.1)" ] ; then TYPE="dolby=\"surround\"" else if [ $TYPE = "(stereo)" ] ; then TYPE="channels=\"2\"" fi fi XML_LINE=`grep -C1 $VOB dvdauthor-aud.xml |awk '{print $1}' |head -n1` let INSERT_NO=`sed -n "/$VOB/{=;p;q}" dvdauthor-aud.xml |head -n1`-1 INSERT="$INSERT_NO"i if [ $XML_LINE = "<pgc>" 2> /dev/null ] ; then sed "$INSERT\<audio format=\"$FORMAT\" lang=\"$LANG\" $TYPE />" dvdauthor-aud.xml > output.xml mv output.xml dvdauthor-aud.xml fi let TRACK_NO=TRACK_NO+1 done done mv dvdauthor-aud.xml ../dvdauthor.xml cd ../ return 1 else return 1 fi } dvd_author_menus () { omit_title sub_xml aud_xml dvdauthor -o $DVD_DIR -x dvdauthor.xml echo -e '\e[1;35mYou have chosen to --enable-menus\e[m' echo -e '\e[1;35m'"You will now have to hand-edit the created 'dvdauthor.xml' by looking at the menu's"'\e[m' echo -e '\e[1;35m.png images in an image-viewer & assigning menu button commands to the relevant menu' echo -e '\e[1;35mRun the ./submenu.sh script to extract the menu images & have it tell you\e[m' echo -e '\e[1;35mhow many buttons you need to assign for each .vob\e[m' echo -e '\e[1;35mLooking in the *.vob.xml files should also give you a clue\e[m' echo "#!/bin/sh" >> submenu.sh echo "rm *.png 1> /dev/null 2> /dev/null" >> submenu.sh echo "rm *.vob.xml 1> /dev/null 2> /dev/null" >> submenu.sh echo "for i in *m.vob ; do spuunmux -o $i $i; done" >> submenu.sh echo "for i in *.vob.xml ; do echo -e "Number of buttons in $i: \c" && cat $i |grep button |wc -l ; done" >> submenu.sh chmod +x submenu.sh echo -e '\e[1;33m'"Run 'dvdauthor -o $DVD_DIR -x dvdauthor.xml' when you are done to author the DVD structure"'\e[m' echo -e '\e[1;33m'"Use 'xine dvd:`pwd`/$WORKDIR/$DISC_NAME/$DVD_DIR/VIDEO_TS/' to test before burning"'\e[m' echo -e '\e[1;31m'"Create image & burn to DVD5 (4.7GB) Disc with 'growisofs -Z /dev/dvd -dvd-video $DVD_DIR/'"'\e[m' return 0 exit } dvd_author () { omit_title sub_xml aud_xml echo -e '\e[1;31mCreating new DVD file structure\e[m' mv dvdauthor.xml dvdauthor-temp.xml sed -e '/menus/,/\/menus/d' dvdauthor-temp.xml > dvdauthor.xml rm dvdauthor-temp.xml dvdauthor -o $DVD_DIR -x dvdauthor.xml echo -e '\e[1;32m'"Newly converted DVD can be found in $WORKDIR/$DISC_NAME/$DVD_DIR/"'\e[m' echo -e '\e[1;33m'"Create image & burn to DVD5 (4.7GB) Disc with 'growisofs -Z /dev/dvd -dvd-video $WORKDIR/$DISC_NAME/$DVD_DIR/'"'\e[m' clean_up } clean_up () { if [ $CLEAN = "yes" ] ; then rm -rf subtitles 1> /dev/null 2> /dev/null rm -rf audio 1> /dev/null 2> /dev/null rm * 1> /dev/null 2> /dev/null cd ../../ else echo -e '\e[1;31mSkipping clean-up\e[m' echo -e '\e[1;31mProcess files have been left intact\e[m' cd ../../ fi exit } dvd_extract
This README contains the basic steps necessary for creating/burning VCD video to CDR. The links to the software necessary can be found in README.links
download and make install nuppelvideo, exportvideo and the MJPEGtools mpeg2enc (or mpeg2encode*nuv*tgzs), toolame (or ffmpeg), vcdimager and cdrdao (and optionally mpgcut if your target video size os larger than fits one cd, though this is untested and the program probably violates all standards) somewhere accessible
nuvrec finefilm (or nuvrec -n finefilm for NTSC) type ^c when you're done
nuvplay -e finefilm.nuv | toolame -b 224 -m s /dev/stdin finefilm.mp2
exportvideo finefilm.nuv "|mpeg2enc -o finefilm.m1v" (for heroine-style encode do something to the effect of encode -1 -n 15 -m 2 -q 10 finefilm.nuv finefilm.m1v note: for cbr you would have to use -b 1411200, but it won't look as good … ymmv)
resizing
encoding ranges of input files is dscribed in README.avi2mpeg
mplex finefilm.m1v finefilm.mp2 finefilm.mpg (mplex is part of the MJPEGtools suite. Alternatively mplexhi can be used, but it is slower and less configurable)
CAVEAT! cutting the mpeg is depracated, since the outcome is not guaranteed to cmply to MPEG standards; it is recommended to only encode the relevant portions of the video, see README.avi2mpeg 3.3 for how. Optionally cut the mpg in parts, e. g. note: this is exactly the space a 650 M cdr should provide (74 minutes at 60 seconds at 75 frames at 2324 usable of 2352 bytes total), you might have to readjust to slightly smaller sizes so the iso fs fits 6.
vcdimager -l "Fine Film" --add-file=unix.desc.nfo,iso_desc.nfo
7.
cdrdao write --device x,y,z --driver drivetype -v 3 videocd.cue
documented on: 2004.08.21
From mpgcut main site, http://mpgcut.sourceforge.net/ :
mpgcut Rests In Peace.
you may want to take a look at its successor: mt an mpeg toolbox instead mt extends mpgcut in many ways: more file formats supported, cut and join of mpeg files, detailed infos about mpeg file formats, … So go get it at mpgtx.sourceforge.net and update your bookmarks
documented on: 2004.08.21
a fully automatic command line ripping makefile generator for transcode
A tool which automatically (i.e. with as few user interaction as possible) selects the best parameters for a given ripping task. It should inspect the source (e.g. a DVD or an AVI file), extract all important information, calculate the missing parameters and generate a parameter set for transcode that will create an output file of high quality.
ripmake [Options] <input-file/dir> <flavor>
Common Options:
-t <num> Select title in DVD mode (default: 1,-1,1) -a <tn/tl>[,<br>][,<sr>][,<c>] Pick audio track num or language, (e.g. -a en bitrate, sampling rate and channels. -a 0,224 Repeat for more audio tracks! -a 0,128v Add 'v[mode]' to <br> for vbr encoding. -a 1,192v4) -s <tn> Add subtitle track (e.g. -s de -s 2) -p <on/off> Probe input only (default: 0=off)
Advanced Options:
-n <tv_norm> Set output tv standard (fps) (none,pal,ntsc,ntscfilm) (default: autodetect) -i <on/off> Input signal is interlaced (default: 0=off)
-g <w>[,<h>] Force a target frame size (default: autodetect) -c <num> Force number of CDs (default: autodetect) -r <num> Force clip range -u <on/off> Do interactive clipping (default: 0=off) -C <num> Set size of a CD/DVD in MB (default: 700=cd/4450=dvd) -S <frac> Use only a fraction of CD size (default: 1.0) -o <vcodec>[/<vc_opt>][,<acodec>] Choose codec for flavor (default: derived) -f <vcodec>[,<acodec>] Force input codec (default: auto)
Expert Options:
-x var=value Set an option variable (help: "-x help") -X <file> Read config options from file -d <level> Enable debug output
supported flavors: avi,ogm,mkv,svcd,vcd,dvd
% debfoster ripmake The following packages have unmet dependencies: ripmake: Depends: mpglen but it is not installable Depends: chaplin (>= 1.10) but it is not installable Depends: pgmfindclip but it is not installable
% debfoster ripmake mpglen chaplin pgmfindclip Reading Package Lists… Done Building Dependency Tree… Done Package chaplin is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source
$ ripmake "$mfilm" vcd ripmake: $Revision: 1.39 $ $Date: 2004/09/12 18:13:53 $ transcode(0.6.12), pgmfindclip(MISSING), chaplin(MISSING), mpglen(MISSING) FATAL: external tool missing!
# we use mpglen for exact MPEG frame count print_log(" calling 'mpglen' to determine frame count... (this may take a whi le!)\n"); my($frames) = run_cmd("mpglen -f \"$ifile\"",0); $$in{'frames'} = $frames; # frames and duration in secs if(!defined($$in{'frames'})) { if(m/V: (\d+) frames, (\d+) sec/) { $$in{'frames'} = $1; $$in{'secs'} = $2; } elsif(m/length: (\d+) frames, frame_time=(\d+) msec/) { $$in{'frames'} = $1; $$in{'secs'} = $1 * $2 / 1000; } else { print_log(" parse error: no frames, secs!\n"); return 0; } }
encode2mpeg is a front end to MPlayer/MEncoder and mjpegtools. It is able to convert any kind of video that mplayer can play in a format suitable for VCD/SVCD/DVD, plus it can create DivX avi.
his program has evolved from another one called mencvcd. The idea of mencvcd is the following: '_'_'_'_ | | source video -> | mplayer | -> final video (DVD) | mjpegtools | (S/VCD) |'_'_'_'_|
One serious problem I found using mencvcd is that it fails to deal with source videos that have video frame rate different from the one of the target mpeg stream. If you have a video with variable frame rate, non standard (i.e. 15fps) frame rate, some exotic NTSC telecined dvd or simply you want to convert from PAL to NTSC or vice versa, then mencvcd will not help you.
I kept all the features and many options of mencvcd and I added many more. Here is a list of the main differences:
support for DVD compliant output stream
support for DIVX AVI
support for more then one audio stream (SVCD/DVD/AVI)
support for custom quantization matrices
support for VCD/MPEG1 variable bit rate
support for AC3 and LPCM audio
extraction of vobsub subtitles
nice log file that tells you what is going on
capability to pass any exotic option to all the tools
encode2mpeg version 0.4.2 Copyright (C) 2004-2005 Giacomo Comes
Usage: encode2mpeg options source Options: -h|-help -l|-longhelp -quiet -o|-output <filename> -a <n> [Direct,Mpeg] -mpegfixaspect [pad|crop] [Direct,Mpeg] -abr <n> -asr <n> [Direct,Mpeg] -vbr <n> -vfr <n> -n|-video-norm <n|p|s> [Direct,Mpeg] -p|-pulldown [Direct] -vcd [Direct,Mpeg] -svcd [1-2] [Direct,Npeg] -svcdht [Direct,Mpeg] -dvd [1-5] [Direct,Mpeg] -dvdaudiolang <code,code,...> [Direct,Mpeg] -addchapter <time,time,...|step-total|copy> [Direct,Mpeg] -nochapter [Direct,Mpeg] -addsub <sid0,sid1,...|copy> [Direct,Mpeg] -addsdx <sid0,sid1,...> [Direct,Mpeg] -addsla <sla0,sla1,...> [Direct,Mpeg] -cdburndevice <dev> [Direct,Mpeg] -dvdburndevice <dev> [Direct,Mpeg] -cdi <path to CD-i application files> [Direct,Mpeg] -avi [DivX] -dvd2dvd [Mpeg] -stdvid <n> [Direct,Indirect,Mpeg] -mpeg [Mpeg] -fast [Mpeg] -qmatrix <kvcd|tmpgenc|default|hi-res> -mpeg1vbr [Direct,Mpeg] -mpegmbr <n> [Mpeg] -mp1 [mp2enc|encode|copy] [Direct,Mpeg] -mp2 [mp2enc|toolame|mencoder|copy] [Direct,Mpeg] -mp3 [lame|mencoder|copy] [Direct,Mpeg] -ac3 [mencoder|copy] [Direct,Mpeg] -dts [copy] [Direct,Mpeg] -lpcm [Direct,Mpeg] -acopy [Mpeg] -mpegchannels <1-6> [Direct,Mpeg] -normalize [Direct,Mpeg] -volume <n> -multiaudio <aid0,aid1,...> -noscale [Direct,Mpeg] -monochrome -sync-offset <n> [Direct,Mpeg] -toolopts <yuvdenoise|yuvscaler|mpeg2enc|mplex|mplayer|vcdimager| -split <n> [Direct] -nosplit [Direct] -avisplit <n> [DivX] -resume -keep -blank [Direct,Mpeg] -nowait [Direct,Mpeg] -cacheonly -avionly [DivX] -streamonly [Direct,Mpeg] -mpegonly [Direct,Mpeg] -imageonly [Direct,Mpeg] -isoonly [Direct,Mpeg] -encode <n|n:m:i[,b]> [DivX,Indirect,Mpeg] -turbo <0-1> [DivX,Mpeg] -bframes <0-4> [DivX,Mpeg] -vbitrate <n> [DivX,Mpeg] -vcustom <libavcodec options> [DivX,Mpeg] -acustom <mp3lame options> [DivX,Mpeg] -encsid <sid0,sid1,...> -encsdx <sid0,sid1,...> -encsla <sla0,sla1,...> -ofps <n> [DivX] -usesbr [1-6|>100] [DivX,Mpeg] -setaspect [n] [DivX] -crop <w:h:x:y> [DivX] -autocrop [DivX] -cpu <n> -interlaced -fixavi [DivX] -video <source stream> <options> [Direct,Mpeg] -cache <dir> <mount point> -savecache [iso] [raid] -removecache
Options valid for DivX Mode are also valid for Indirect Mode ( avi stream) Options valid for Direct Mode are also valid for Indirect Mode (mpeg stream) If nothing is specified, the option is valid for every Mode Arguments enclosed in [ ] are optional
encode2mpeg has different working modes, which are:
DivX Mode
Direct Mode
Indirect Mode
Mpeg Mode
-avionly -encode -mpeg The running Mode is selected x x DivX Mode by the presence or the Direct Mode absence of the options x Indirect Mode avionly, encode, mpeg x x Mpeg Mode
DivX Mode => Indirect Mode ( avi stream) Direct Mode => Indirect Mode (mpeg stream)
Options valid for DivX Mode are also valid for Indirect Mode ( avi stream) Options valid for Direct Mode are also valid for Indirect Mode (mpeg stream) If nothing is specified, the option is valid for every Mode
-encode <n|n:m:i[,b]> [DivX,Indirect,Mpeg] the parameter n:m:i selects the audio codec, video codec and number of pass for mencoder, possible values are: n m i 0 copy 0 copy 1 1 pcm 1 libavcodec/mpeg 2 2 mp3lame/fast 2 as 1 + mbd=2 3 3 mp3lame/standard 3 as 1 + compression opts 4 libavcodec/mp2 4 as 1 + quality opts 5 libavcodec/mp3 6 libavcodec/ac3 for m=[2-4] and i>1 turbo is on 7 toolame/mp2 witn n=[3-7] b specify the audio bit rate when the parameter is a single number it is a shortcut: 1 = 3:2:1 - 1 pass,fast,almost good quality, big size 2 = 3:2:2 - 2 pass,not fast,good quality, big size 3 = 3:3:2 - 2 pass,slow,average quality, small size (default) 4 = 3:4:2 - 2 pass,slow,very good quality, huge size
-o|-output <filename> filename of the output stream -n|-video-norm <n|p|s> [Direct,Mpeg] set the video norm of the VCD/SVCD/DVD
-vcd [Direct,Mpeg] generate VCD compliant frames on output (default) -svcd [1-2] [Direct,Npeg] generate SVCD compliant frames on output; the following resolutions are possible: PAL NTSC 1 480x576 480x480 2 352x288 352x240 default is 1 -svcdht [Direct,Mpeg] enable the VCD header trick; this trick could allow to play SVCD on DVD player that does not support SVCD. For more details see: http://www.videohelp.com/svcd -dvd [1-5] [Direct,Mpeg] generate DVD compliant frames on output; the following resolutions are possible: PAL NTSC 1 720x576 720x480 2 704x576 704x480 3 480x576 480x480 (non standard DVD-SVCD) 4 352x576 352x480 5 352x288 352x240 default is 1
-avionly [DivX] create only the avi stream -streamonly [Direct,Mpeg] create only the elementary stream (video and audio) -mpegonly [Direct,Mpeg] create the mpeg stream (and remove the elementary stream) -imageonly [Direct,Mpeg] create the binary image (S/VCD) or the DVD filesystem -isoonly [Direct,Mpeg] create the DVD iso image; normally it is never created
-mpeg [Mpeg] set Mpeg Mode; it generates VCD/SVCD/DVD compliant frames on output using mencoder instead of mpeg2enc; it will set -nosplit -mpeg1vbr [Direct,Mpeg] produce a VCD/MPEG-1 variable bit rate stream, the output stream is smaller and a complete movie could fit in one VCD; check if your hardware player support variable bit rate VCD -fast [Mpeg] if you create the VCD/SVCD/DVD mpeg stream with mencoder (Mpeg Mode) and you have only one mp2/mp3 audio stream, you can skip the multiplexing step with this option.
0.4.2 2005-03-18 0.4.1 2005-03-12 0.4.0 2005-03-04 0.3.5 2005-01-27 0.3.4 2005-01-03 0.3.3 2004-12-21 0.3.2 2004-12-09 0.3.1 2004-11-28 0.3.0 2004-11-03
I generally prefer to write shell scripts in a syntax conformant to the POSIX/SUS standard. This way, they are easily portable across operating systems, I only need to refer to a text to write my code (http://www.opengroup.org/onlinepubs/009695399/toc.htm), not to various existing implementations/versions of a specific shell (and set of utilities), and it makes it easier for other people to understand the code and contribute to it.
I did several tests with that new version with various POSIX conformant shells (dash, pdksh, zsh, bash).
mfilm=/mnt/dvd/11.rm !mplayer
Playing /mnt/dvd/11.rm REAL file format detected. ======= WAVE Format ======= Format Tag: 28515 (0x6F63) Channels: 1 Samplerate: 22050 avg byte/sec: 32115 Block align: 558 bits/sample: 16 cbSize: 18 =========================== VIDEO: RV20 [20200002,00029838] 352x240 (aspect 0.00) 15.00 fps Opening audio decoder: [realaud] RealAudio decoder opening shared obj '/usr/lib/win32/cook.so.6.0' Audio codec: [7] 32 Kbps Voice Audio bitrate: 32.041 kbit/s (4005 bps) AUDIO: 22050 Hz, 1 ch, 16 bit (0x10), ratio: 4005->44100 (32.0 kbit)
mencoder -ovc lavc -lavcopts vcodec=mpeg1video:vhq:keyint=300:vbitrate=1151 -oac mp3lame -lameopts br=224:cbr -of mpeg "$mfilm" -o /tmp/test.mpg
Playing test.mpg MPEG-PS file format detected. Too many video packets in the buffer: (4096 in 8294809 bytes). Maybe you are playing a non-interleaved stream/file or the codec failed? For AVI files, try to force non-interleaved mode with the -ni option. MPEG: No audio stream found -> no sound. VIDEO: MPEG1 352x240 (aspect 1) 23.98 fps 1151.2 kbps (143.9 kbyte/s) Audio: no sound
cdd tmp whatever2mpg.pl /mnt/dvd/11.rm
stty echo mfilm=11rm01.mpg
!mplayer Playing 11rm01.mpg MPEG-PS file format detected. VIDEO: MPEG1 352x240 (aspect 12) 29.97 fps 1152.0 kbps (144.0 kbyte/s) Opening audio decoder: [mp3lib] MPEG layer-2, layer-3 MP3lib: init layer2&3 finished, tables done AUDIO: 44100 Hz, 2 ch, 16 bit (0x10), ratio: 28000->176400 (224.0 kbit)