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; } }