mirror of
https://github.com/mpv-player/mpv
synced 2024-12-14 19:05:33 +00:00
Reformat examples:
- break overly long lines - indent continuation lines - add missing <replaceable> tags git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21424 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
54f1d327e4
commit
c6f76aab85
@ -245,9 +245,9 @@ Container formats:
|
||||
Creating a Macromedia Flash video suitable for playback in a web browser
|
||||
with the Macromedia Flash plugin:
|
||||
<screen>
|
||||
mencoder <replaceable>input.avi</replaceable> -o <replaceable>output.flv</replaceable> -of lavf -oac mp3lame -lameopts abr:br=56 -ovc lavc \
|
||||
-lavcopts vcodec=flv:vbitrate=500:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 \
|
||||
-srate 22050
|
||||
mencoder <replaceable>input.avi</replaceable> -o <replaceable>output.flv</replaceable> -of lavf \
|
||||
-oac mp3lame -lameopts abr:br=56 -srate 22050 -ovc lavc \
|
||||
-lavcopts vcodec=flv:vbitrate=500:mbd=2:mv0:trell:v4mv:cbp:last_pred=3
|
||||
</screen>
|
||||
</para>
|
||||
</informalexample>
|
||||
@ -321,7 +321,8 @@ Two pass encode of the second track a DVD to an MPEG-4 ("DivX")
|
||||
AVI while copying the audio track.
|
||||
<screen>
|
||||
mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 -oac copy -o /dev/null
|
||||
mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell:vpass=2 -oac copy -o <replaceable>output.avi</replaceable>
|
||||
mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell:vpass=2 \
|
||||
-oac copy -o <replaceable>output.avi</replaceable>
|
||||
</screen>
|
||||
</para>
|
||||
</example>
|
||||
@ -334,8 +335,10 @@ the audio track to MP3.
|
||||
Be careful using this method as it may lead to audio/video desync in
|
||||
some cases.
|
||||
<screen>
|
||||
mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 -oac mp3lame -lameopts vbr=3 -o /dev/null
|
||||
mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell:vpass=2 -oac mp3lame -lameopts vbr=3 -o <replaceable>output.avi</replaceable>
|
||||
mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 \
|
||||
-oac mp3lame -lameopts vbr=3 -o /dev/null
|
||||
mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell:vpass=2 \
|
||||
-oac mp3lame -lameopts vbr=3 -o <replaceable>output.avi</replaceable>
|
||||
</screen>
|
||||
</para>
|
||||
</example>
|
||||
@ -374,9 +377,10 @@ mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell:vpass=2 -oac mp3la
|
||||
<title>encode for PSP</title>
|
||||
<para>
|
||||
<screen>
|
||||
mencoder -oac lavc -ovc lavc -of lavf -lavcopts aglobal=1:vglobal=1:vcodec=mpeg4:acodec=aac \
|
||||
-af lavcresample=24000 -vf harddup -lavfopts format=psp:i_certify_that_my_video_stream_does_not_use_b_frames \
|
||||
-ofps 30000/1001 input.video -o output.psp
|
||||
mencoder -ofps 30000/1001 -af resample=24000 -vf harddup -of lavf \
|
||||
-oac lavc -ovc lavc -lavcopts aglobal=1:vglobal=1:vcodec=mpeg4:acodec=aac \
|
||||
-lavfopts format=psp:i_certify_that_my_video_stream_does_not_use_b_frames \
|
||||
<replaceable>input.video</replaceable> -o <replaceable>output.psp</replaceable>
|
||||
</screen>
|
||||
Note that you can set the title of the video with
|
||||
<option>-info name=<replaceable>MovieTitle</replaceable></option>.
|
||||
@ -406,19 +410,22 @@ use the <option>-of mpeg</option> option.
|
||||
<para>
|
||||
Example:
|
||||
<screen>
|
||||
mencoder <replaceable>input.avi</replaceable> -of mpeg -ovc lavc -lavcopts vcodec=mpeg1video -oac copy <replaceable>other_options</replaceable> -o <replaceable>output.mpg</replaceable>
|
||||
mencoder <replaceable>input.avi</replaceable> -of mpeg -ovc lavc -lavcopts vcodec=mpeg1video \
|
||||
-oac copy <replaceable>other_options</replaceable> -o <replaceable>output.mpg</replaceable>
|
||||
</screen>
|
||||
Creating an MPEG-1 file suitable to be played on systems with minimal
|
||||
multimedia support, such as default Windows installs:
|
||||
<screen>
|
||||
mencoder <replaceable>input.avi</replaceable> -of mpeg -mpegopts format=mpeg1:tsaf:muxrate=2000 -o <replaceable>output.mpg</replaceable> -oac lavc -ovc lavc \
|
||||
-lavcopts acodec=mp2:abitrate=224:vcodec=mpeg1video:vbitrate=1152:keyint=15:mbd=2:aspect=4/3
|
||||
mencoder <replaceable>input.avi</replaceable> -of mpeg -mpegopts format=mpeg1:tsaf:muxrate=2000 \
|
||||
-o <replaceable>output.mpg</replaceable> -oac lavc -lavcoptc acodec=mp2:abitrate=224 -ovc lavc \
|
||||
-lavcopts vcodec=mpeg1video:vbitrate=1152:keyint=15:mbd=2:aspect=4/3
|
||||
</screen>
|
||||
Same, but using <systemitem class="library">libavformat</systemitem> MPEG muxer:
|
||||
<screen>
|
||||
mencoder <replaceable>input.avi</replaceable> -of lavf -lavfopts format=mpg:i_certify_that_my_video_stream_does_not_use_b_frames \
|
||||
-ovc lavc -lavcopts vcodec=mpeg1video:vrc_buf_size=327:keyint=15:vrc_maxrate=1152:vbitrate=1152:vmax_b_frames=0 \
|
||||
-o VCD.mpg -ofps 25 -vf scale=352:288,harddup -oac lavc -lavcopts acodec=mp2:abitrate=224
|
||||
mencoder <replaceable>input.avi</replaceable> -o <replaceable>VCD.mpg</replaceable> -ofps 25 -vf scale=352:288,harddup -of lavf \
|
||||
-lavfopts format=mpg:i_certify_that_my_video_stream_does_not_use_b_frames \
|
||||
-oac lavc -lavcopts acodec=mp2:abitrate=224 -ovc lavc \
|
||||
-lavcopts vcodec=mpeg1video:vrc_buf_size=327:keyint=15:vrc_maxrate=1152:vbitrate=1152:vmax_b_frames=0 \
|
||||
</screen>
|
||||
</para>
|
||||
</informalexample>
|
||||
@ -458,7 +465,8 @@ If it is not specified, <application>MEncoder</application> will use 2: bicubic.
|
||||
<para>
|
||||
Usage:
|
||||
<screen>
|
||||
mencoder <replaceable>input.mpg</replaceable> -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell -vf scale=640:480 -o <replaceable>output.avi</replaceable>
|
||||
mencoder <replaceable>input.mpg</replaceable> -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell \
|
||||
-vf scale=640:480 -o <replaceable>output.avi</replaceable>
|
||||
</screen>
|
||||
</para>
|
||||
</sect1>
|
||||
@ -505,7 +513,8 @@ them. This section is about <emphasis role="bold">copying</emphasis>.
|
||||
<para>
|
||||
Example:
|
||||
<screen>
|
||||
mencoder <replaceable>input.nsv</replaceable> -oac copy -fafmttag 0x706D -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell -o <replaceable>output.avi</replaceable>
|
||||
mencoder <replaceable>input.nsv</replaceable> -oac copy -fafmttag 0x706D \
|
||||
-ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell -o <replaceable>output.avi</replaceable>
|
||||
</screen>
|
||||
</para>
|
||||
|
||||
@ -543,7 +552,8 @@ The explanation of the <option>-mf</option> option is in the man page.
|
||||
<para>
|
||||
Creating an MPEG-4 file from all the JPEG files in the current directory:
|
||||
<screen>
|
||||
mencoder mf://*.jpg -mf w=800:h=600:fps=25:type=jpg -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell -oac copy -o <replaceable>output.avi</replaceable>
|
||||
mencoder mf://*.jpg -mf w=800:h=600:fps=25:type=jpg -ovc lavc \
|
||||
-lavcopts vcodec=mpeg4:mbd=2:trell -oac copy -o <replaceable>output.avi</replaceable>
|
||||
</screen>
|
||||
</para>
|
||||
</informalexample>
|
||||
@ -552,7 +562,8 @@ mencoder mf://*.jpg -mf w=800:h=600:fps=25:type=jpg -ovc lavc -lavcopts vcodec=m
|
||||
<para>
|
||||
Creating an MPEG-4 file from some JPEG files in the current directory:
|
||||
<screen>
|
||||
mencoder mf://<replaceable>frame001.jpg,frame002.jpg</replaceable> -mf w=800:h=600:fps=25:type=jpg -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell -oac copy -o <replaceable>output.avi</replaceable>
|
||||
mencoder mf://<replaceable>frame001.jpg,frame002.jpg</replaceable> -mf w=800:h=600:fps=25:type=jpg \
|
||||
-ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell -oac copy -o <replaceable>output.avi</replaceable>
|
||||
</screen>
|
||||
</para>
|
||||
</informalexample>
|
||||
@ -563,7 +574,7 @@ Creating an MPEG-4 file from explicit list of JPEG files (list.txt in current di
|
||||
contains the list of files to use as source, one per line):
|
||||
<screen>
|
||||
mencoder mf://<replaceable>@list.txt</replaceable> -mf w=800:h=600:fps=25:type=jpg \
|
||||
-ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell -oac copy -o <replaceable>output.avi</replaceable>
|
||||
-ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell -oac copy -o <replaceable>output.avi</replaceable>
|
||||
</screen>
|
||||
</para>
|
||||
</informalexample>
|
||||
@ -657,17 +668,20 @@ before starting.
|
||||
<example id="copying_two_subtitles_from_a_dvd_while_doing_two_pass_encoding">
|
||||
<title>Copying two subtitles from a DVD while doing two pass encoding</title>
|
||||
<screen>
|
||||
rm subtitles.idx subtitles.sub
|
||||
mencoder dvd://1 -oac copy -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 -vobsubout subtitles -vobsuboutindex 0 -sid 2
|
||||
mencoder dvd://1 -oac copy -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell:vpass=2 -vobsubout subtitles -vobsuboutindex 1 -sid 5<!--
|
||||
rm <replaceable>subtitles.idx</replaceable> <replaceable>subtitles.sub</replaceable>
|
||||
mencoder dvd://1 -oac copy -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 \
|
||||
-vobsubout <replaceable>subtitles</replaceable> -vobsuboutindex 0 -sid 2
|
||||
mencoder dvd://1 -oac copy -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell:vpass=2 \
|
||||
-vobsubout <replaceable>subtitles</replaceable> -vobsuboutindex 1 -sid 5<!--
|
||||
--></screen>
|
||||
</example>
|
||||
|
||||
<example id="copying_a_french_subtitle_from_an_mpeg_file">
|
||||
<title>Copying a French subtitle from an MPEG file</title>
|
||||
<screen>
|
||||
rm subtitles.idx subtitles.sub
|
||||
mencoder <replaceable>movie.mpg</replaceable> -ifo <replaceable>movie.ifo</replaceable> -vobsubout subtitles -vobsuboutindex 0 -vobsuboutid fr -sid 1 -nosound -ovc copy
|
||||
rm <replaceable>subtitles.idx</replaceable> <replaceable>subtitles.sub</replaceable>
|
||||
mencoder <replaceable>movie.mpg</replaceable> -ifo <replaceable>movie.ifo</replaceable> -vobsubout <replaceable>subtitles</replaceable> -vobsuboutindex 0 \
|
||||
-vobsuboutid fr -sid 1 -nosound -ovc copy
|
||||
</screen>
|
||||
</example>
|
||||
|
||||
@ -709,7 +723,8 @@ See the man page for the usage of the <systemitem>cropdetect</systemitem> and
|
||||
|
||||
<para>
|
||||
Usage
|
||||
<screen>mencoder <replaceable>sample-svcd.mpg</replaceable> -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell:autoaspect -vf crop=714:548:0:14 -oac copy -o <replaceable>output.avi</replaceable></screen>
|
||||
<screen>mencoder <replaceable>sample-svcd.mpg</replaceable> -vf crop=714:548:0:14 -oac copy -ovc lavc \
|
||||
-lavcopts vcodec=mpeg4:mbd=2:trell:autoaspect -o <replaceable>output.avi</replaceable></screen>
|
||||
</para>
|
||||
</sect1>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user