comparison DOCS/OpenDivX @ 1:3b5f5d1c5041

Initial revision
author arpi_esp
date Sat, 24 Feb 2001 20:28:24 +0000
parents
children 2c04d6650bc9
comparison
equal deleted inserted replaced
0:c1bb2c071d63 1:3b5f5d1c5041
1
2 OpenDivX support in MPlayer
3 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
4
5 See http://www.projectmayo.com for details on Open DivX codecs.
6 It's an opensource DivX-like video codec written for windows.
7 I did a fast hack to get it compile under linux (it has some
8 dependency on windows header files and some visualc extensions).
9
10 Decoder:
11 ~~~~~~~~
12 Now it's used for AVI files with fourcc 'dvx1'
13 You can adjust Quality level using the -divxq option. Valid values:
14
15 postprcc_level = 0 ----> no post processing (fastest)
16 postproc_level = 1 ~ 9 ----> horizontal Y deblocking only
17 postproc_level = 10 ~ 19 ----> hor. + ver. Y deblocking
18 postproc_level = 20 ~ 29 ----> hor. + ver. Y and hor. C deblocking
19 postproc_level = 30 ~ 39 ----> hor. + ver. Y and hor.+ver. C deblocking
20 postproc_level = 40 ~ 49 ----> h+v Y, h+v C deblock and Y deringing
21 postproc_level = 50 ~ 59 ----> h+v Y, h+v C deblock and Y+C deringing
22
23 Note: last level (Chroma deringing) sometimes crashes.
24
25 Encoder:
26 ~~~~~~~~
27 There is a very alpha hack to convert mpeg video into OpenDivX .avi files.
28 You should disable audio, and select 'odivx' video device as output:
29 mplayer input.mpg -nosound -vo odivx -encode output.avi
30 Yes, I know that it's unusable now, it's only for testing purposes.