Mercurial > mplayer.hg
annotate DOCS/tech/libavc-options.txt @ 8554:559217c44624
Reviewed and reworked (again), added some information about SCSI CD-ROMs.
author | diego |
---|---|
date | Tue, 24 Dec 2002 18:28:11 +0000 |
parents | 81f01b7b3f6d |
children | 166b7b15dd56 |
rev | line source |
---|---|
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
1 Description of what all those libavcodec options do ... |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
2 WARNING: I am no encoding expert so the recommendations might be bad ... |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
3 if you find any errors, missing stuff, ... send a patch or cvs commit if you |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
4 have an cvs account :) |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
5 |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
6 lavcopts: (encoder options) |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
7 --------------------------- |
6108 | 8 |
6700 | 9 vqmin 2-31 (minimum quantizer) for pass1/2 |
10 1 is not recommended (much larger file, little quality difference (if u are lucky) | |
11 and other weird things (if u are less lucky)) | |
12 weird things: msmpeg4, h263 will be very low quality | |
13 ratecontrol will be confused -> lower quality | |
14 some decoders will not be able to decode it | |
7088 | 15 2 is recommended for normal mpeg4/mpeg1video encoding (default) |
16 3 is recommended for h263(p)/msmpeg4 | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
17 the reason for 3 instead of 2 is that 2 could lead to overflows |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
18 (this will be fixed for h263(p) by changing the quanizer per MB in |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
19 the future, but msmpeg4 doesnt support that so it cant be fixed for |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
20 that) |
6108 | 21 |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
22 vqscale 1-31 quantizer for constant quantizer / constant quality encoding |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
23 1 is not recommended (much larger file, little quality difference and |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
24 possible other weird things) |
6108 | 25 lower means better quality but larger files |
26 see vqmin | |
27 | |
28 vqmax 1-31 (maximum quantizer) for pass1/2 | |
7088 | 29 31 default |
6108 | 30 10-31 should be a sane range |
31 | |
8492 | 32 mbqmin 1-31 (minimum macroblock quantizer) for pass1/2 |
33 2 default | |
34 | |
35 mbqmax 1-31 (maximum macroblock quantizer) for pass1/2 | |
36 31 default | |
37 | |
6108 | 38 vqdiff 1-31 (maximum quantizer difference between I or P frames) for pass1/2 |
39 3 default | |
40 | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
41 vmax_b_frames 0-4 (maximum number of B frames between non B frames) |
6108 | 42 0 no b frames (default) |
7088 | 43 0-2 is a sane range for mpeg4 |
6108 | 44 |
45 vme 0-5 (motion estimation) | |
46 0 none (not recommanded, very lq) | |
47 1 full (not recommanded, too slow) | |
48 2 log (not recommanded, lq) | |
49 3 phods (not recommanded, lq) | |
50 4 EPZS (default) | |
51 5 X1 | |
52 | |
53 vhq (high quality mode) | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
54 encode each MB as in all modes and choose the best (this is slow but |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
55 better filesize/quality) |
6108 | 56 disabled by default |
57 | |
58 v4mv | |
59 allow 4 MV per MB (little difference in filesize/quality) | |
60 disabled by default | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
61 cannot be used with B frames (should now work in lq mode) |
6108 | 62 |
63 keyint 0-300 (maximum interval between keyframes) | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
64 keyframes are needed for seeking as seeking is only possible to a |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
65 keyframe but they need more space than non-keyframes so larger numbers here |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
66 mean slightly smaller files, but less precise seeking |
6108 | 67 0 no keyframes |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
68 >300 is not recommended as the quality might be bad (depends upon |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
69 decoder, encoder and luck) |
7088 | 70 for strict mpeg1/2/4 compliance this would have to be <=132 |
6108 | 71 |
72 vb_strategy 0-1 for pass 2 | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
73 0 allways use the max number of B frames (default) |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
74 1 avoid B frames in high motion scenes (this will cause bitrate |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
75 misprediction) |
6108 | 76 |
77 vpass | |
78 1 first pass | |
79 2 second pass | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
80 (only need to specify if two-pass encoding is used) |
7496 | 81 Tip: u can try to use constant quantizer mode for pass1 (vqscale=<quantizer>) |
8191 | 82 for huffyuv: |
83 pass 1 saves statistics | |
84 pass 2 encodes with a optimal huffman table based upon the pass 1 stats | |
6108 | 85 |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
86 vbitrate (kbits per second) for pass1/2 |
6108 | 87 800 is default |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
88 (if value is bigger then 16000 it is interpreted as bit not kbit!) |
6108 | 89 |
90 vratetol (filesize tolerance in kbit) for pass1/2 | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
91 this is just an approximation, the real difference can be much smaller |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
92 or larger |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
93 1000-100000 is a sane range |
6108 | 94 8000 is default |
95 | |
7088 | 96 vrc_maxrate (maximum bitrate in kbit/sec) for pass1/2 |
97 vrc_minrate (minimum bitrate in kbit/sec) for pass1/2 | |
98 vrc_buf_size (buffer size in kbit) for pass1/2 | |
99 this is for stuff like VCD | |
100 VCD: FIXME | |
101 SVCD: ... | |
102 DVD: ... | |
103 Note: vratetol should not be too large during the 2.pass or there might | |
104 be problems if vrc_(min|max)rate is used | |
105 | |
106 vb_qfactor (-31.0-31.0) for pass1/2 | |
107 1.25 is default | |
108 vi_qfactor (-31.0-31.0) for pass1/2 | |
109 0.8 is default | |
110 vb_qoffset (-31.0-31.0) for pass1/2 | |
111 1.25 is default | |
112 vi_qoffset (-31.0-31.0) for pass1/2 | |
113 0.0 is default | |
114 if v{b|i}_qfactor > 0 | |
115 I/B-Frame quantizer = P-Frame quantizer * v{b|i}_qfactor + v{b|i}_qoffset | |
116 else | |
117 do normal ratecontrol (dont lock to next P frame quantizer) and | |
118 set q= -q * v{b|i}_qfactor + v{b|i}_qoffset | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
119 tip: to do constant quantizer encoding with different quantizers for |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
120 I/P and B frames you can use: |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
121 vqmin=<ip_quant>:vqmax=<ip_quant>:vb_qfactor=<b_quant/ip_quant> |
6108 | 122 |
7088 | 123 vqblur (0.0-1.0) quantizer blur (pass1) |
6108 | 124 0.0 qblur disabled |
125 0.5 is the default | |
126 1.0 average the quantizer over all previous frames | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
127 larger values will average the quantizer more over time so that it will |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
128 be changed slower |
7088 | 129 vqblur (0.0-99.0) quantizer blur (pass2) |
130 gaussian blur (gaussian blur cant be done during pass 1 as the future quantizers arent known) | |
131 0.5 is the default | |
132 larger values will average the quantizer more over time so that it will | |
133 be changed slower | |
6108 | 134 |
7088 | 135 vqcomp quantizer compression (for pass1/2) |
136 depends upon vrc_eq | |
137 | |
138 vrc_eq the main ratecontrol equation (for pass1/2) | |
139 1 constant bitrate | |
140 tex constant quality | |
141 1+(tex/avgTex-1)*qComp approximately the equation of the old ratecontrol code | |
142 tex^qComp with qcomp 0.5 or something like that (default) | |
6108 | 143 |
7088 | 144 infix operators: +,-,*,/,^ |
145 variables: | |
146 tex texture complexity | |
147 iTex,pTex intra, non intra texture complexity | |
148 avgTex average texture complexity | |
149 avgIITex average intra texture complexity in I frames | |
150 avgPITex average intra texture complexity in P frames | |
151 avgPPTex average non intra texture complexity in P frames | |
152 avgBPTex average non intra texture complexity in B frames | |
153 mv bits used for MVs | |
154 fCode maximum length of MV in log2 scale | |
155 iCount number of intra MBs / number of MBs | |
156 var spatial complexity | |
157 mcVar temporal complexity | |
158 qComp qcomp from the command line | |
159 isI, isP, isB is 1 if picture type is I/P/B else 0 | |
160 Pi,E see ur favorite math book | |
161 | |
162 functions: | |
163 max(a,b),min(a,b) maximum / minimum | |
164 gt(a,b) is 1 if a>b, 0 otherwise | |
165 lt(a,b) is 1 if a<b, 0 otherwise | |
166 eq(a,b) is 1 if a==b,0 otherwise | |
167 sin,cos,tan,sinh,cosh,tanh,exp,log,abs | |
168 | |
169 vrc_override user specified quality for specific parts (ending credits ...) (for pass1/2) | |
170 <start-frame>,<end-frame>,<quality>[/<start-frame>,<end-frame>,<quality>[/...]] | |
171 quality 2..31 -> quantizer | |
172 quality -500..0 -> quality correcture in % | |
173 | |
174 vrc_init_cplx (0-1000) initial complexity for pass1 | |
175 | |
176 vqsquish (0 or 1) for pass1/2 how to keep the quantizer between qmin & qmax | |
177 0 use cliping | |
178 1 use a nice differentiable function (default) | |
6108 | 179 |
7039
2eae7ac0fa8b
same behavior for luma & chroma single coeff elimination
michael
parents:
7011
diff
changeset
|
180 vlelim (-1000-1000) single coefficient elimination threshold for luminance |
6256 | 181 0 disabled (default) |
7039
2eae7ac0fa8b
same behavior for luma & chroma single coeff elimination
michael
parents:
7011
diff
changeset
|
182 -4 (JVT recommendation) |
2eae7ac0fa8b
same behavior for luma & chroma single coeff elimination
michael
parents:
7011
diff
changeset
|
183 negative values will allso consider the dc coefficient |
2eae7ac0fa8b
same behavior for luma & chroma single coeff elimination
michael
parents:
7011
diff
changeset
|
184 should be at least -4 or lower for encoding at quant=1 |
6256 | 185 |
7039
2eae7ac0fa8b
same behavior for luma & chroma single coeff elimination
michael
parents:
7011
diff
changeset
|
186 vcelim (-1000-1000) single coefficient elimination threshold for chrominance |
6256 | 187 0 disabled (default) |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
188 7 (JVT recommendation) |
7039
2eae7ac0fa8b
same behavior for luma & chroma single coeff elimination
michael
parents:
7011
diff
changeset
|
189 negative values will allso consider the dc coefficient |
2eae7ac0fa8b
same behavior for luma & chroma single coeff elimination
michael
parents:
7011
diff
changeset
|
190 should be at least -4 or lower for encoding at quant=1 |
6256 | 191 |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
192 vstrict strict standard compliance |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
193 only recommended if you want to feed the output into the mpeg4 reference |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
194 decoder |
6256 | 195 |
196 vdpart data partitioning | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
197 adds 2 byte per video packet |
7724 | 198 each videopacket will be encoded in 3 seperate partitions: |
199 1. MVs (=movement) | |
200 2. DC coefficients (=low res picture) | |
201 3. AC coefficients (=details) | |
202 the MV & DC are most important, loosing them looks far worse than | |
203 loosing the AC and the 1. & 2. partition (MV&DC) are far smaller than | |
204 the 3. partition (AC) -> errors will hit the AC partition much more | |
205 often than the MV&DC -> the picture will look better with partitioning | |
206 than without, as without partitining an error will trash AC/DC/MV | |
207 equally | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
208 improves error-resistance when transfering over unreliable channels (eg. |
6322 | 209 streaming over the internet) |
6256 | 210 |
6257 | 211 vpsize (0-10000) video packet size |
212 0 disabled (default) | |
7724 | 213 100-1000 good choice |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
214 improves error-resistance (see vdpart for more info) |
6257 | 215 |
6552 | 216 gray grayscale only encoding (a bit faster than with color ...) |
217 | |
7236 | 218 vfdct (0-99) dct algorithm |
7179 | 219 0 automatically select a good one (default) |
220 1 fast integer | |
221 2 accurate integer | |
222 3 mmx | |
223 4 mlib | |
7619 | 224 |
225 idct (0-99) idct algorithm | |
226 0 automatically select a good one (default) | |
227 1 jpeg reference integer | |
228 2 simple | |
229 3 simplemmx | |
230 4 libmpeg2mmx (inaccurate, DONT USE for encoding with keyint >100) | |
231 5 ps2 | |
232 6 mlib | |
233 7 arm | |
7623 | 234 note: all these IDCTs do pass the IEEE1180 tests AFAIK |
7179 | 235 |
7496 | 236 lumi_mask (0.0-1.0) luminance masking |
237 0.0 disabled (default) | |
7619 | 238 0.0-0.3 should be a sane range |
7496 | 239 warning: be carefull, too large values can cause disasterous things |
240 warning2: large values might look good on some monitors but may look horrible | |
241 on other monitors | |
242 | |
243 dark_mask (0.0-1.0) darkness masking | |
244 0.0 disabled (default) | |
245 0.0-0.3 should be a sane range | |
246 warning: be carefull, too large values can cause disasterous things | |
247 warning2: large values might look good on some monitors but may look horrible | |
248 on other monitors / TV / TFT | |
249 | |
250 tcplx_mask (0.0-1.0) temporal complexity masking | |
251 0.0 disabled (default) | |
252 | |
253 scplx_mask (0.0-1.0) spatial complexity masking | |
254 0.0 disabled (default) | |
255 0.0-0.5 should be a sane range | |
256 larger values help against blockiness, if no deblocking filter is used | |
257 for decoding | |
258 Tip: crop any black borders completly away as they will reduce the quality | |
259 of the MBs there, this is true if scplx_mask isnt used at all too | |
260 | |
261 naq normalize adaptive quantization | |
262 experimental | |
7619 | 263 |
264 ildct use interlaced dct | |
7496 | 265 |
8191 | 266 format |
267 YV12 (default) | |
268 422P (for huffyuv) | |
269 | |
270 pred (for huffyuv) | |
271 0 left prediction | |
272 1 plane/gradient prediction | |
273 2 median prediction | |
8492 | 274 |
6256 | 275 lavdopts: (decoder options) |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
276 --------------------------- |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
277 |
7722 | 278 ec error concealment |
279 1 use strong deblock filter for damaged MBs | |
280 2 iterative MV search (slow) | |
281 3 all (default) | |
282 Note: just add the ones u want to enable | |
6256 | 283 |
7722 | 284 er error resilience |
285 0 disabled | |
286 1 carefull (should work with broken encoders) | |
287 2 normal (default) (works with compliant encoders) | |
288 3 agressive (more checks but might cause problems even for valid bitstreams) | |
289 4 very agressive | |
290 | |
291 bug manual workaround encoder bugs (autodetection isnt foolproof for these) | |
292 0 nothing | |
293 1 autodetect bugs (default) | |
294 2 for msmpeg4v3 some old lavc generated msmpeg4v3 files (no autodetect) | |
295 4 for mpeg4 xvid interlacing bug (autodetected if fourcc==XVIX) | |
296 8 for mpeg4 UMP4 (autodetected if fourcc==UMP4) | |
297 16for mpeg4 padding bug | |
298 32for mpeg4 illegal vlc bug (autodetected per fourcc) | |
8191 | 299 64for mpeg4 XVID&DIVX qpel bug (autodetected) |
7722 | 300 Note: just add the ones u want to enable |
6256 | 301 |
6549 | 302 gray grayscale only decoding (a bit faster than with color ...) |
303 | |
7619 | 304 idct see lavcopts |
305 note: the decoding quality is highest if the same idct algorithm is used | |
306 for decoding as for encoding, this is often not the most accurate though | |
307 | |
6256 | 308 |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
309 Notes: 1. lavc will strictly follow the quantizer limits vqmin, vqmax, vqdiff |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
310 even if it violates the bitrate / bitrate tolerance |
6108 | 311 2. changing some options between pass1 & 2 can reduce the quality |
312 | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
313 FAQ: Q: Why is the filesize much too small? |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
314 A: Try to increase vqmin=2 or 1 (be carefull with 1, it could cause |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
315 strange things to happen). |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
316 Q: Can I use -pass 1 & -pass 2 with vmax_b_frames>0 ? |
6322 | 317 A: -pass x uses the divx4 twopass-encoding codem which is incompatible |
318 with the libavcodec encode. | |
319 If you want to fix it read DOCS/tech/patches.txt and send a patch. | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
320 Q: What provides better error recovery while keeping the filesize low? |
7088 | 321 Should I use data partitioning or increase the number of video packets? |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
322 A: Data partitioning is better in this case. |
6108 | 323 |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
324 Glossary: |
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
325 MB Macroblock (16x16 luminance and 8x8 chrominance samples) |
6108 | 326 MV Motion vector |
327 ME Motion estimation | |
328 MC Motion compensation | |
7088 | 329 RC Rate control |
330 DCT Discrete Cosine Transform | |
331 IDCT Inverse Discrete Cosine Transform | |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
332 JVT Joint Video Team Standard -- http://www.itu.int/ITU-T/news/jvtpro.html |
6108 | 333 |
6270
8dfe9b162624
Spell checking, line wrapping for better readability, some additions/better explanations.
atmos4
parents:
6266
diff
changeset
|
334 Examples: |
6256 | 335 mencoder foobar.avi -lavcopts vcodec=mpeg4:vhq:keyint=300:vqscale=2 -o new-foobar.avi |
6547 | 336 mplayer foobar.avi -lavdopts bug=1 |
6322 | 337 |
7282 | 338 Links: |
339 short intro to mpeg coding: | |
340 http://www.eecs.umich.edu/~amarathe/mpeg.html | |
341 longer intro to jpeg/mpeg coding: | |
342 http://www.cs.sfu.ca/undergrad/CourseMaterials/CMPT479/material/notes/Chap4/Chap4.2/Chap4.2.html | |
343 | |
6322 | 344 -- |
345 Written 2002 by Michael Niedermayer and reviewed by Felix Buenemann. | |
346 Check the MPlayer documentation for contact-addresses. | |
347 |