diff options
author | gpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-08-21 10:03:59 +0000 |
---|---|---|
committer | gpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-08-21 10:03:59 +0000 |
commit | dd5d24d367e4a98b0a4397c0bbdbddb920a6999a (patch) | |
tree | 0bfd4c6c096ec87479508ff482518ffdd66ba5df /DOCS/xml/en/encoding-guide.xml | |
parent | 6f4bba6b615b82aa57977bbea715d686d92f3d7d (diff) |
How to encode with soft 3:2 pullup, patch by Brendan McCarthy
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16284 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS/xml/en/encoding-guide.xml')
-rw-r--r-- | DOCS/xml/en/encoding-guide.xml | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/DOCS/xml/en/encoding-guide.xml b/DOCS/xml/en/encoding-guide.xml index 010df15e78..6c418a6d05 100644 --- a/DOCS/xml/en/encoding-guide.xml +++ b/DOCS/xml/en/encoding-guide.xml @@ -3299,7 +3299,9 @@ codec</title> <entry>48000 Hz</entry> <entry>AC3,PCM</entry> <entry>1536 kbps</entry> - <entry>23.976, 29.97</entry> + <entry>30000/1001, 24000/1001<footnote id="fn-ntsc-framerate"><para> + 24000/1001 FPS can be achieved with a 3:2 pullup. + </para></footnote></entry> <entry>4:3, 16:9 (only for 720x480)</entry> </row> <row> @@ -3312,7 +3314,7 @@ codec</title> <entry>48000 Hz</entry> <entry>AC3,PCM</entry> <entry>1536 kbps</entry> - <entry>23.976, 29.97</entry> + <entry>30000/1001, 24000/1001<footnoteref linkend='fn-ntsc-framerate'/></entry> <entry>4:3, 16:9</entry> </row> <row> @@ -3323,7 +3325,7 @@ codec</title> <entry>44100 Hz</entry> <entry>MP2</entry> <entry>384 kbps</entry> - <entry>29.97</entry> + <entry>30000/1001</entry> <entry>4:3</entry> </row> <row> @@ -3334,7 +3336,7 @@ codec</title> <entry>44100 Hz</entry> <entry>MP2</entry> <entry>224 kbps</entry> - <entry>23.976, 29.97</entry> + <entry>24000/1001, 30000/1001</entry> <entry>4:3</entry> </row> <row> @@ -3462,6 +3464,15 @@ codec</title> </screen> </para> +<para> + DVD with NTSC Pullup: + <screen> + -of mpeg -mpegopts format=dvd:telecine -ofps 24000/1001 + </screen> + This allows 24000/1001 fps progressive content to be encoded at 30000/1001 + fps whilst maintaing DVD-compliance. +</para> + <sect3 id="menc-feat-vcd-dvd-output-aspect"> <title>Aspect Ratio</title> <para> @@ -3788,11 +3799,11 @@ codec</title> <sect3 id="menc-feat-vcd-dvd-all-ntsc-ac3-copy"> <title>NTSC AVI Containing AC3 Audio to DVD</title> <para> - If the source already has AC3 audio, and is NTSC @ 23.976 fps: + If the source already has AC3 audio, and is NTSC @ 24000/1001 fps: <screen> - mencoder -oac copy -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:480,\ - harddup -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:\ - vbitrate=5000:keyint=15:aspect=16/9 -ofps 24000/1001 \ + mencoder -oac copy -ovc lavc -of mpeg -mpegopts format=dvd:telecine \ + -vf scale=720:480,harddup -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:\ + vrc_maxrate=9800:vbitrate=5000:keyint=15:aspect=16/9 -ofps 24000/1001 \ -o <replaceable>movie.mpg</replaceable> <replaceable>movie.avi</replaceable> </screen> </para> |