diff options
Diffstat (limited to 'DOCS')
-rw-r--r-- | DOCS/xml/en/encoding-guide.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/DOCS/xml/en/encoding-guide.xml b/DOCS/xml/en/encoding-guide.xml index abb51593cc..6c0ea36c03 100644 --- a/DOCS/xml/en/encoding-guide.xml +++ b/DOCS/xml/en/encoding-guide.xml @@ -4334,16 +4334,16 @@ An example with VP3 compression: </para> <para> - DVD: + DVD (with timestamps on every frame, if possible): <screen> - -of mpeg -mpegopts format=dvd + -of mpeg -mpegopts format=dvd:tsaf </screen> </para> <para> DVD with NTSC Pullup: <screen> - -of mpeg -mpegopts format=dvd:telecine -ofps 24000/1001 + -of mpeg -mpegopts format=dvd:tsaf:telecine -ofps 24000/1001 </screen> This allows 24000/1001 fps progressive content to be encoded at 30000/1001 fps whilst maintaing DVD-compliance. @@ -4654,7 +4654,7 @@ An example with VP3 compression: <title>PAL DVD</title> <para> <screen> - mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:576,\ + mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd:tsaf -vf scale=720:576,\ harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:\ vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=15:acodec=ac3:\ abitrate=192:aspect=16/9 -ofps 25 \ @@ -4667,7 +4667,7 @@ An example with VP3 compression: <title>NTSC DVD</title> <para> <screen> - mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:480,\ + mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd:tsaf -vf scale=720:480,\ harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:\ vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=18:acodec=ac3:\ abitrate=192:aspect=16/9 -ofps 30000/1001 \ @@ -4681,7 +4681,7 @@ An example with VP3 compression: <para> If the source already has AC3 audio, use -oac copy instead of re-encoding it. <screen> - mencoder -oac copy -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:576,\ + mencoder -oac copy -ovc lavc -of mpeg -mpegopts format=dvd:tsaf -vf scale=720:576,\ harddup -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:\ vbitrate=5000:keyint=15:aspect=16/9 -ofps 25 \ -o <replaceable>movie.mpg</replaceable> <replaceable>movie.avi</replaceable> @@ -4694,7 +4694,7 @@ An example with VP3 compression: <para> If the source already has AC3 audio, and is NTSC @ 24000/1001 fps: <screen> - mencoder -oac copy -ovc lavc -of mpeg -mpegopts format=dvd:telecine \ + mencoder -oac copy -ovc lavc -of mpeg -mpegopts format=dvd:tsaf: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> |