1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
# parameter file for Berkeley mpeg_encode with good default values
#
# usage: mpeg_encode warp.param
#
# use this as a guideline for any parameters you don't really understand
# or don't care about
#
PATTERN IBBPBBPBBPBBPBB
OUTPUT warp.mpg
BASE_FILE_FORMAT PPM
GOP_SIZE 30
SLICES_PER_FRAME 1
PIXEL HALF
RANGE 10
PSEARCH_ALG LOGARITHMIC
BSEARCH_ALG CROSS2
IQSCALE 8
PQSCALE 10
BQSCALE 25
REFERENCE_FRAME ORIGINAL
##
## You really need to understand the following:
## Read the manual page for mpeg_encode.
##
## The INPUT_CONVERT line operates on each file:
## The command
## tgatoppm *
## says to convert each input file
## from Truevision Targa image format
## to Portable PixMap.
##
## The line after the INPUT line, which reads
## warp*.tga [0000-0014]
## says that the original input files have the names
## warp0000.tga
## through
## warp0014.tga
## sequentially.
##
INPUT_CONVERT tgatoppm *
INPUT_DIR .
INPUT
warp*.tga [0000-0014]
END_INPUT
|