diff options
author | 2006-12-12 09:40:49 +0000 | |
---|---|---|
committer | 2006-12-12 09:40:49 +0000 | |
commit | a0d986709957ffcf8aa27e75d9c2210a12838b94 (patch) | |
tree | a894ad6ba0e17dabff8b99c74a654cbc2fdcbc58 | |
parent | d6c8342dc48b29f80d0737273b461bf301753d80 (diff) |
vstrict=0 is required to create DVDs decodable by standalone dvd players
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21599 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | DOCS/xml/en/encoding-guide.xml | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/DOCS/xml/en/encoding-guide.xml b/DOCS/xml/en/encoding-guide.xml index eaf954809e..47ecf151d0 100644 --- a/DOCS/xml/en/encoding-guide.xml +++ b/DOCS/xml/en/encoding-guide.xml @@ -4645,6 +4645,13 @@ or DVD: use vbitrate=9800, but be warned that this could constrain you to less than an hour of video on a single-layer DVD. </para></listitem> +<listitem><para> + <emphasis role="bold">vtrict</emphasis>: + <option>vstrict</option>=0 should be used to create DVDs. + Without this option, <application>MEncoder</application> creates a + stream that cannot be correctly decoded by some standalone DVD + players. +</para></listitem> </itemizedlist> </sect3> @@ -4676,7 +4683,7 @@ keyint=15:acodec=mp2 DVD: <screen> -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:\ -keyint=15:acodec=ac3 +keyint=15:vstrict=0:acodec=ac3 </screen> </para> </sect3> @@ -4702,7 +4709,7 @@ higher quality DVD: <screen> -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=8000:\ keyint=15:trell:mbd=2:precmp=2:subcmp=2:cmp=2:dia=-10:predia=-10:cbp:mv0:\ -vqmin=1:lmin=1:dc=10 +vqmin=1:lmin=1:dc=10:vstrict=0 </screen> </para> </sect3> @@ -4791,7 +4798,7 @@ compliant videos. 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 \ +keyint=15:vstrict=0:acodec=ac3:abitrate=192:aspect=16/9 -ofps 25 \ -o <replaceable>movie.mpg</replaceable> <replaceable>movie.avi</replaceable> </screen> </para> @@ -4806,7 +4813,7 @@ keyint=15:acodec=ac3:abitrate=192:aspect=16/9 -ofps 25 \ 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 \ +keyint=18:vstrict=0:acodec=ac3:abitrate=192:aspect=16/9 -ofps 30000/1001 \ -o <replaceable>movie.mpg</replaceable> <replaceable>movie.avi</replaceable> </screen> </para> @@ -4822,7 +4829,7 @@ If the source already has AC3 audio, use -oac copy instead of re-encoding it. mencoder -oac copy -ovc lavc -of mpeg -mpegopts format=dvd:tsaf \ -vf scale=720:576,harddup -ofps 25 \ -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:\ -keyint=15:aspect=16/9 -o <replaceable>movie.mpg</replaceable> <replaceable>movie.avi</replaceable> +keyint=15:vstrict=0:aspect=16/9 -o <replaceable>movie.mpg</replaceable> <replaceable>movie.avi</replaceable> </screen> </para> </sect3> @@ -4836,7 +4843,7 @@ If the source already has AC3 audio, and is NTSC @ 24000/1001 fps: <screen> 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 \ + vrc_maxrate=9800:vbitrate=5000:keyint=15:vstrict=0:aspect=16/9 -ofps 24000/1001 \ -o <replaceable>movie.mpg</replaceable> <replaceable>movie.avi</replaceable> </screen> </para> |