comparison DOCS/mencoder.1 @ 3721:66da035c4ee2

some quick updates for the prerelease
author gabucino
date Mon, 24 Dec 2001 23:00:07 +0000
parents a01b322bab55
children 68dae60dd470
comparison
equal deleted inserted replaced
3720:120ac80f13c2 3721:66da035c4ee2
25 .RB [ \-mp3file\ <filename> ] 25 .RB [ \-mp3file\ <filename> ]
26 .RB [ \-ac3file\ <filename> ] 26 .RB [ \-ac3file\ <filename> ]
27 .RB [ \-ovc\ <video\ codec\ name> ] 27 .RB [ \-ovc\ <video\ codec\ name> ]
28 .RB [ \-oac\ <audio\ codec\ name> ] 28 .RB [ \-oac\ <audio\ codec\ name> ]
29 .RB [ \-divx4opts\ <codec\ options> ] 29 .RB [ \-divx4opts\ <codec\ options> ]
30 .RB [ \-lavcopts\ <codec\ options> ]
30 .RB [ \-lameopts\ <codec\ options> ] 31 .RB [ \-lameopts\ <codec\ options> ]
31 .RB [ \-pass\ <1/2> ] 32 .RB [ \-pass\ <1/2> ]
32 .RB [ \-passlogfile\ <filename> ] 33 .RB [ \-passlogfile\ <filename> ]
33 .RB [ \-ofps\ <fps> ] 34 .RB [ \-ofps\ <fps> ]
34 .RB [ \-o\ <filename> ] 35 .RB [ \-o\ <filename> ]
117 Examples: 118 Examples:
118 119
119 -ovc help get help 120 -ovc help get help
120 -ovc copy no encoding, just streamcopy 121 -ovc copy no encoding, just streamcopy
121 -ovc divx4 encode to DivX4 122 -ovc divx4 encode to DivX4
123 -ovc lavc encode with a libavcodec codec
122 .TP 124 .TP
123 .B \-oac <codecname> 125 .B \-oac <codecname>
124 Encode with the given codec (codec names are from codecs.conf). 126 Encode with the given codec (codec names are from codecs.conf).
125 Examples: 127 Examples:
126 128
151 rc_reaction_period=XXX rate control 153 rc_reaction_period=XXX rate control
152 reaction period 154 reaction period
153 rc_reaction_ratio=XXX rate control 155 rc_reaction_ratio=XXX rate control
154 reaction ratio 156 reaction ratio
155 157
158 .TP
159 .B \-lavcopts
160 If encoding with a codec from libavcodec, you can specify its parameters here,
161 like:
162
163 -lavcopts vcodec=msmpeg4:vbitrate=1800:vhq:keyint=250
164
165 Available options:
166
167 help get help
168 vcodec=XXX use the specified codec
169 (for full list, see html doc!)
170 vbitrate=XXX specify bitrate in
171 kbit <4-16000> or
172 bit <16001-24000000>
173 keyint=XXX interval between keyframes
174 (specify in frames)
175 vhq very high quality
156 .TP 176 .TP
157 .B \-lameopts 177 .B \-lameopts
158 If encoding to MP3 with libmp3lame, you can specify its parameters here, like: 178 If encoding to MP3 with libmp3lame, you can specify its parameters here, like:
159 179
160 -lameopts br=192 180 -lameopts br=192
210 Rescale output movie to given pixels tall. 230 Rescale output movie to given pixels tall.
211 .TP 231 .TP
212 .B \-sws (0-2> 232 .B \-sws (0-2>
213 Type of scaling method 233 Type of scaling method
214 234
215 0 fast bilinear 235 0 fast bilinear (default)
216 1 bilinear 236 1 bilinear
217 2 bicubic (best quality) 237 2 bicubic (best quality)
218 238
219 .SH FILES AND DIRECTORIES 239 .SH FILES AND DIRECTORIES
220 .IP 240 .IP
221 .SH "EXAMPLES" 241 .SH "EXAMPLES"
222 .B Encoding DVD title #2 242 .B Encoding DVD title #2
223 mencoder -dvd 2 -o title2.avi 243 mencoder -dvd 2 -o title2.avi
244 .TP
245 .B The same, but with libavcodec family, MJPEG compression
246 mencoder -dvd 2 -o title2.avi -ovc lavc -lavcopts vcodec=mjpeg -ffourcc mjpg
224 .TP 247 .TP
225 .B Encoding from HTTP 248 .B Encoding from HTTP
226 mencoder http://mplayer.hq/example.avi -o example.avi 249 mencoder http://mplayer.hq/example.avi -o example.avi
227 .TP 250 .TP
228 .B Encoding from a pipe 251 .B Encoding from a pipe