annotate DOCS/xml/en/mencoder.xml @ 11747:6ed241d3db16

lavc audio codecs are now supported.
author diego
date Mon, 05 Jan 2004 20:52:44 +0000
parents d5784b575959
children 8e7098f960f8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
1 <?xml version="1.0" encoding="iso-8859-1"?>
10913
49b1a67e7381 Add revision keyword to english xml files, to ease translation synchronization
lumag
parents: 10869
diff changeset
2 <!-- $Revision$ -->
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
3 <chapter id="mencoder">
11540
d480f7e36b74 <application> attack
wight
parents: 11271
diff changeset
4 <title>Encoding with <application>MEncoder</application></title>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
5
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
6 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
7 For the complete list of available <application>MEncoder</application> options
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
8 and examples, please see the man page. For a series of hands-on examples and
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
9 detailed guides on using several encoding parameters, read the
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
10 <ulink url="../../tech/encoding-tips.txt">encoding-tips</ulink> that were
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
11 collected from several mailing list threads on mplayer-users. Search the
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
12 <ulink url="http://mplayerhq.hu/pipermail/mplayer-users/">archives</ulink>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
13 for a wealth of discussions about all aspects of and problems related to
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
14 encoding with <application>MEncoder</application>.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
15 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
16
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
17 <sect1 id="menc-feat-divx4">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
18 <title>Encoding 2 or 3-pass MPEG-4 (&quot;DivX&quot;)</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
19
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
20 <formalpara>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
21 <title>2-pass encoding</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
22 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
23 The name comes from the fact that this method encodes the file <emphasis>twice</emphasis>.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
24 The first encoding (dubbed pass) creates some temporary files
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
25 (<filename>*.log</filename>) with a size of few megabytes, do not delete
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
26 them yet (you can delete the AVI). In the second pass, the 2-pass output
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
27 file is created, using the bitrate data from the temporary files. The
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
28 resulting file will have much better image quality. If this is the first
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
29 time you heard about this, you should consult some guides available on the
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
30 Net.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
31 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
32 </formalpara>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
33
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
34 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
35 This example shows how to encode a DVD to a 2-pass MPEG-4 (&quot;DivX&quot;) AVI.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
36 Just two commands are needed:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
37 <screen>rm frameno.avi</screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
38 remove this file, which can come from a previous 3-pass encoding (it interferes
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
39 with current one)
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
40 <screen>
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
41 mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 -oac copy -o <replaceable>movie.avi</replaceable>
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
42 mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vpass=2 -oac copy -o <replaceable>movie.avi</replaceable>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
43 </screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
44 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
45
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
46 <formalpara>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
47 <title>3-pass encoding</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
48 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
49 This is an extension of 2-pass encoding, where the audio encoding takes
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
50 place in a separate pass. This method enables estimation of recommended
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
51 video bitrate in order to fit on a CD. Also, the audio is encoded only
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
52 once, unlike in 2-pass mode. The schematics:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
53 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
54 </formalpara>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
55
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
56 <procedure>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
57 <step><para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
58 Remove conflicting temporary file:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
59 <screen>rm frameno.avi</screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
60 </para></step>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
61 <step><para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
62 <emphasis>First pass:</emphasis>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
63
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
64 <screen>mencoder <replaceable>file/DVD</replaceable> -ovc frameno -oac mp3lame -lameopts vbr=3 -o frameno.avi</screen>
11732
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
65
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
66 An audio-only avi file will be created, containing
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
67 <emphasis role="bold">only</emphasis> the requested audio stream. Don't forget
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
68 <option>-lameopts</option>, if you need to set it. If you were encoding a
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
69 long movie, <application>MEncoder</application> prints the recommended
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
70 bitrate values for 650Mb, 700Mb, and 800Mb destination sizes, after this
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
71 pass finishes.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
72 </para></step>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
73 <step><para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
74 <emphasis>Second pass:</emphasis>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
75 <screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
76 mencoder <replaceable>file/DVD</replaceable> -oac copy -ovc lavc -lavcopts vcodec=mpeg4:vpass=1:vbitrate=<replaceable>bitrate</replaceable><!--
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
77 --></screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
78 This is the first pass of video encoding. Optionally specify the video
11540
d480f7e36b74 <application> attack
wight
parents: 11271
diff changeset
79 bitrate <application>MEncoder</application> printed at the end of the previous pass.
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
80 </para></step>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
81 <step><para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
82 <emphasis>Third pass:</emphasis>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
83 <screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
84 mencoder <replaceable>file/DVD</replaceable> -oac copy -pass 2 \
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
85 -ovc divx4 -divx4opts br=<replaceable>bitrate</replaceable>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
86 </screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
87 This is the second pass of video encoding. Specify the same bitrate
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
88 as in the previous pass unless you really know what you are doing.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
89 In this pass, audio from <filename>frameno.avi</filename> will be
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
90 inserted into the destination file...and it's all ready!
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
91 </para></step>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
92 </procedure>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
93
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
94 <example>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
95 <title>Example of 3-pass encoding</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
96 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
97 <screen>rm frameno.avi</screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
98 remove this file, which can come from a previous 3-pass encoding
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
99 (it interferes with current one)
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
100 <screen>
10184
b6c63ab184a4 Changed a few remaining -dvd and -vcd options to dvd:// and vcd://.
diego
parents: 10065
diff changeset
101 mencoder dvd://2 -ovc frameno -o frameno.avi -oac mp3lame -lameopts vbr=3
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
102 mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 -oac copy -o <replaceable>movie.avi</replaceable>
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
103 mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vpass=2 -oac copy -o <replaceable>movie.avi</replaceable>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
104 </screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
105 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
106 </example>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
107 </sect1>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
108
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
109 <sect1 id="menc-feat-mpeg">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
110 <title>Encoding to MPEG format</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
111 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
112 <application>MEncoder</application> can create MPEG (MPEG-PS) format output
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
113 files. It's probably useful only with <link linkend="ffmpeg">libavcodec</link>'s
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
114 <emphasis>mpeg1video</emphasis> codec, because players - except
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
115 <application>MPlayer</application> - expect MPEG1 video, and MPEG1 layer 2 (MP2)
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
116 audio streams in MPEG files.
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
117 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
118
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
119 <para>
11680
f2f7c22847b3 added capital letter at the beginning of the sentence
paszczi
parents: 11540
diff changeset
120 This feature is not very useful right now, aside that it probably has many bugs,
11540
d480f7e36b74 <application> attack
wight
parents: 11271
diff changeset
121 but the more importantly because <application>MEncoder</application> currently
d480f7e36b74 <application> attack
wight
parents: 11271
diff changeset
122 cannot encode MPEG1 layer 2 (MP2) audio, which all other players expect in MPEG files.
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
123 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
124
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
125 <para>
11540
d480f7e36b74 <application> attack
wight
parents: 11271
diff changeset
126 To change <application>MEncoder's</application> output file format,
d480f7e36b74 <application> attack
wight
parents: 11271
diff changeset
127 use the <option>-of mpeg</option> option.
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
128 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
129
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
130 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
131 Example:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
132 <screen>
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
133 mencoder -of mpeg -ovc lavc -lavcopts vcodec=mpeg1video -oac copy <replaceable>other_options</replaceable> <replaceable>media.avi</replaceable> -o <replaceable>output.mpg</replaceable>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
134 </screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
135 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
136 </sect1>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
137
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
138
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
139 <sect1 id="menc-feat-rescale">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
140 <title>Rescaling movies</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
141
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
142 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
143 Often the need to resize movie images' size emerges. Its reasons can be
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
144 many: decreasing file size, network bandwidth,etc. Most people even do
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
145 rescaling when converting DVDs or SVCDs to DivX AVI. This is <emphasis role="bold">bad</emphasis>.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
146 Instead of even you doing so, read the <link linkend="aspect">Preserving aspect ratio</link>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
147 section.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
148 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
149
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
150 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
151 The scaling process is handled by the <literal>scale</literal> video filter:
9677
142c42fa0986 sync with HTML
nicolas
parents: 9675
diff changeset
152 <option>-vf scale=<replaceable>width</replaceable>:<replaceable>height</replaceable></option>.
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
153 Its quality can be set with the <option>-sws</option> option.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
154 If it's not specified, <application>MEncoder</application> will use 0: fast
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
155 bilinear.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
156 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
157
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
158 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
159 Usage:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
160 <screen>
9677
142c42fa0986 sync with HTML
nicolas
parents: 9675
diff changeset
161 mencoder <replaceable>input.mpg</replaceable> -ovc lavc -lavcopts vcodec=mpeg4 -vf scale=640:480-o <replaceable>output.avi</replaceable>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
162 </screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
163 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
164 </sect1>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
165
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
166
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
167 <sect1 id="menc-feat-streamcopy">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
168 <title>Stream copying</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
169
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
170 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
171 <application>MEncoder</application> can handle input streams in two ways:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
172 <emphasis role="bold">encode</emphasis> or <emphasis role="bold">copy</emphasis>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
173 them. This section is about <emphasis role="bold">copying</emphasis>.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
174 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
175
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
176 <itemizedlist>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
177 <listitem><para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
178 <emphasis role="bold">Video stream</emphasis> (option <option>-ovc copy</option>):
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
179 nice stuff can be done :) Like, putting (not converting!) FLI or VIVO or
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
180 MPEG1 video into an AVI file! Of course only
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
181 <application>MPlayer</application> can play such files :) And it probably
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
182 has no real life value at all. Rationally: video stream copying can be
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
183 useful for example when only the audio stream has to be encoded (like,
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
184 uncompressed PCM to MP3).
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
185 </para></listitem>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
186 <listitem><para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
187 <emphasis role="bold">Audio stream</emphasis> (option <option>-oac copy</option>):
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
188 straightforward. It is possible to take an external audio file (MP3,
10429
diego
parents: 10184
diff changeset
189 WAV) and mux it into the output stream. Use the
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
190 <option>-audiofile <replaceable>filename</replaceable></option> option
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
191 for this.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
192 </para></listitem>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
193 </itemizedlist>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
194 </sect1>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
195
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
196
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
197 <sect1 id="menc-feat-fix-avi">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
198 <title>Fixing AVIs with broken index or interleaving</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
199
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
200 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
201 Easiest thing. We simply copy the video and audio streams, and
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
202 <application>MEncoder</application> generates the index. Of course this cannot fix possible bugs in
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
203 the video and/or audio streams. It also fixes files with broken interleaving,
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
204 thus the <option>-ni</option> option won't be needed for them anymore.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
205 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
206
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
207 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
208 Command:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
209 <screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
210 mencoder -idx <replaceable>input.avi</replaceable> -ovc copy -oac copy -o <replaceable>output.avi</replaceable><!--
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
211 --></screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
212 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
213
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
214
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
215 <sect2 id="menc-feat-appending">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
216 <title>Appending multiple AVI files</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
217
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
218 <para>
11540
d480f7e36b74 <application> attack
wight
parents: 11271
diff changeset
219 As a side-effect, the broken AVI fixer function enables <application>MEncoder</application>
d480f7e36b74 <application> attack
wight
parents: 11271
diff changeset
220 to append 2 (or more) AVI files:
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
221 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
222
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
223 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
224 Command:
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
225 <screen>cat 1.avi 2.avi | mencoder -noidx -ovc copy -oac copy -o <replaceable>output.avi</replaceable> -</screen>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
226 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
227
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
228 <note><para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
229 This expects <filename>1.avi</filename> and <filename>2.avi</filename> to use
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
230 the same codecs, resolution, stream rate etc, and at least <filename>1.avi</filename>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
231 must not be broken. You may need to fix your input AVI files first, as described
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
232 <link linkend="menc-feat-fix-avi">above</link>.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
233 </para></note>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
234 </sect2>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
235 </sect1>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
236
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
237 <sect1 id="menc-feat-enc-libavcodec">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
238 <title>Encoding with the libavcodec codec family</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
239
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
240 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
241 <link linkend="ffmpeg">libavcodec</link> provides simple encoding to a lot
11747
6ed241d3db16 lavc audio codecs are now supported.
diego
parents: 11732
diff changeset
242 of interesting video and audio formats.
6ed241d3db16 lavc audio codecs are now supported.
diego
parents: 11732
diff changeset
243 You can encode to the following codecs (more or less up to date):
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
244
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
245 <informaltable frame="all">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
246 <tgroup cols="2">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
247 <thead>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
248 <row><entry>Codec name</entry><entry>Description</entry></row>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
249 </thead>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
250 <tbody>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
251 <row><entry>mjpeg</entry><entry>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
252 Motion JPEG
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
253 </entry></row>
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
254 <row><entry>ljpeg</entry><entry>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
255 Lossless JPEG
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
256 </entry></row>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
257 <row><entry>h263</entry><entry>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
258 H263
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
259 </entry></row>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
260 <row><entry>h263p</entry><entry>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
261 H263 Plus
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
262 </entry></row>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
263 <row><entry>mpeg4</entry><entry>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
264 ISO standard MPEG-4 (DivX 5, XVID compatible)
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
265 </entry></row>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
266 <row><entry>msmpeg4</entry><entry>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
267 pre-standard MPEG-4 variant by MS, v3 (aka DivX3)
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
268 </entry></row>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
269 <row><entry>msmpeg4v2</entry><entry>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
270 pre-standard MPEG-4 by MS, v2 (used in old asf files)
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
271 </entry></row>
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
272 <row><entry>wmv1</entry><entry>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
273 Windows Media Video, version 1 (aka WMV7)
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
274 </entry></row>
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
275 <row><entry>wmv2</entry><entry>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
276 Windows Media Video, version 2 (aka WMV8)
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
277 </entry></row>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
278 <row><entry>rv10</entry><entry>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
279 an old RealVideo codec
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
280 </entry></row>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
281 <row><entry>mpeg1video</entry><entry>
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
282 MPEG1 video
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
283 </entry></row>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
284 <row><entry>mpeg2video</entry><entry>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
285 MPEG2 video
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
286 </entry></row>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
287 <row><entry>huffyuv</entry><entry>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
288 lossless compression
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
289 </entry></row>
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
290 <row><entry>asv1</entry><entry>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
291 ASUS Video v1
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
292 </entry></row>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
293 <row><entry>asv2</entry><entry>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
294 ASUS Video v2
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
295 </entry></row>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
296 <row><entry>ffv1</entry><entry>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
297 FFmpeg's lossless video codec
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
298 </entry></row>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
299 </tbody>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
300 </tgroup>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
301 </informaltable>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
302
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
303 The first column contains the codec names that should be passed after the
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
304 <literal>vcodec</literal> config, like: <option>-lavcopts vcodec=msmpeg4</option>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
305 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
306
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
307 <informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
308 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
309 An example, with MJPEG compression:
10184
b6c63ab184a4 Changed a few remaining -dvd and -vcd options to dvd:// and vcd://.
diego
parents: 10065
diff changeset
310 <screen>mencoder dvd://2 -o title2.avi -ovc lavc -lavcopts vcodec=mjpeg -oac copy</screen>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
311 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
312 </informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
313 </sect1>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
314
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
315
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
316 <sect1 id="menc-feat-enc-images">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
317 <title>Encoding from multiple input image files (JPEGs,PNGs or TGAs)</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
318
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
319 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
320 <application>MEncoder</application> is capable of creating movies from one
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
321 or more JPEG, PNG or TGA files. With simple framecopy it can create MJPEG
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
322 (Motion JPEG), MPNG (Motion PNG) or MTGA (Motion TGA) files.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
323 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
324
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
325 <orderedlist>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
326 <title>Explanation of the process:</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
327 <listitem><para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
328 <application>MEncoder</application> <emphasis>decodes</emphasis> the input image(s) with
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
329 <systemitem class="library">libjpeg</systemitem> (when decoding PNGs, it
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
330 will use <systemitem class="library">libpng</systemitem>).
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
331 </para></listitem>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
332 <listitem><para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
333 <application>MEncoder</application> then feeds the decoded image to the
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
334 chosen video compressor (DivX4, Xvid, ffmpeg msmpeg4, etc.).
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
335 </para></listitem>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
336 </orderedlist>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
337
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
338 <formalpara>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
339 <title>Examples</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
340 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
341 The explanation of the <option>-mf</option> option can be found below in
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
342 the man page.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
343
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
344 <informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
345 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
346 Creating a DivX4 file from all the JPEG files in the current dir:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
347 <screen>
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
348 mencoder -mf on:w=800:h=600:fps=25 -ovc divx4 -o <replaceable>output.avi</replaceable> \*.jpg<!--
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
349 --></screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
350 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
351 </informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
352
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
353 <informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
354 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
355 Creating a DivX4 file from some JPEG files in the current dir:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
356 <screen>
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
357 mencoder -mf on:w=800:h=600:fps=25 -ovc divx4 -o <replaceable>output.avi</replaceable> <replaceable>frame001.jpg,frame002.jpg</replaceable> <!--
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
358 --></screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
359 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
360 </informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
361
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
362 <informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
363 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
364 Creating a Motion JPEG (MJPEG) file from all the JPEG files in the current
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
365 dir:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
366 <screen>
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
367 mencoder -mf on:w=800:h=600:fps=25 -ovc copy -o <replaceable>output.avi</replaceable> \*.jpg<!--
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
368 --></screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
369 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
370 </informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
371
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
372 <informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
373 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
374 Creating an uncompressed file from all the PNG files in the current dir:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
375 <screen>
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
376 mencoder -mf on:w=800:h=600:fps=25:type=png -ovc raw -o <replaceable>output.avi</replaceable> \*.png<!--
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
377 --></screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
378 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
379 </informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
380
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
381 <note><para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
382 Width must be integer multiple of 4, it's a limitation of the RAW RGB AVI format.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
383 </para></note>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
384
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
385 <informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
386 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
387 Creating a Motion PNG (MPNG) file from all the PNG files in the current
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
388 dir:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
389 <screen>
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
390 mencoder -mf on:w=800:h=600:fps=25:type=png -ovc copy -o <replaceable>output.avi</replaceable> \*.png<!--
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
391 --></screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
392 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
393 </informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
394
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
395 <informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
396 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
397 Creating a Motion TGA (MTGA) file from all the TGA files in the current
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
398 dir:
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
399 <screen>
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
400 mencoder -mf on:w=800:h=600:fps=25:type=tga -ovc copy -o <replaceable>output.avi</replaceable> \*.tga<!--
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
401 --></screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
402 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
403 </informalexample>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
404
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
405 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
406 </formalpara>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
407 </sect1>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
408
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
409
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
410 <sect1 id="menc-feat-extractsub">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
411 <title>Extracting DVD subtitles to Vobsub file</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
412
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
413 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
414 <application>MEncoder</application> is capable of extracting subtitles from
11271
252fb0cf331a spelling fixes, mostly by <ismail.donmez@boun.edu.tr>
diego
parents: 10913
diff changeset
415 a DVD into Vobsub formatted files. They consist of a pair of files ending in
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
416 <filename>.idx</filename> and <filename>.sub</filename> and are usually
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
417 packaged in a single <filename>.rar</filename> archive.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
418 <application>MPlayer</application> can play these with the
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
419 <option>-vobsub</option> and <option>-vobsubid</option> options.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
420 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
421
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
422 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
423 You specify the basename (i.e without the <filename>.idx</filename> or
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
424 <filename>.sub</filename> extension) of the output files with
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
425 <option>-vobsubout</option> and the index for this subtitle in the
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
426 resulting files with <option>-vobsuboutindex</option>.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
427 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
428
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
429 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
430 If the input is not from a DVD you should use <option>-ifo</option> to
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
431 indicate the <filename>.ifo</filename> file needed to construct the
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
432 resulting <filename>.idx</filename> file.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
433 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
434
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
435 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
436 If the input is not from a DVD and you do not have the
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
437 <filename>.ifo</filename> file you will need to use the
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
438 <option>-vobsubid</option> option to let it know what language id to put in
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
439 the <filename>.idx</filename> file.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
440 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
441
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
442 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
443 Each run will append the running subtitle if the <filename>.idx</filename>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
444 and <filename>.sub</filename> files already exist. So you should remove any
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
445 before starting.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
446 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
447
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
448 <example>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
449 <title>Copying two subtitles from a DVD while doing 3-pass encoding</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
450 <screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
451 rm subtitles.idx subtitles.sub
10184
b6c63ab184a4 Changed a few remaining -dvd and -vcd options to dvd:// and vcd://.
diego
parents: 10065
diff changeset
452 mencoder dvd://1 -vobsubout subtitles -vobsuboutindex 0 -sid 2 -o frameno.avi -ovc frameno
b6c63ab184a4 Changed a few remaining -dvd and -vcd options to dvd:// and vcd://.
diego
parents: 10065
diff changeset
453 mencoder dvd://1 -oac copy -ovc divx4 -pass 1
b6c63ab184a4 Changed a few remaining -dvd and -vcd options to dvd:// and vcd://.
diego
parents: 10065
diff changeset
454 mencoder dvd://1 -oac copy -ovc divx4 -pass 2 -vobsubout subtitles -vobsuboutindex 1 -sid 5<!--
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
455 --></screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
456 </example>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
457
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
458 <example>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
459 <title>Copying a french subtitle from an MPEG file</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
460 <screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
461 rm subtitles.idx subtitles.sub
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
462 mencoder <replaceable>movie.mpg</replaceable> -ifo <replaceable>movie.ifo</replaceable> -vobsubout subtitles -vobsuboutindex 0 -vobsuboutid fr -sid 1<!--
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
463 --></screen>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
464 </example>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
465
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
466 </sect1>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
467
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
468 <sect1 id="aspect">
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
469 <title>Preserving aspect ratio</title>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
470 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
471 DVDs and SVCDs (i.e. MPEG1/2) files contain an aspect ratio value, which
10065
422876da049e Error in the aspect ratio calculation, plus typos and rewordings.
diego
parents: 9677
diff changeset
472 describes how the player should scale the video stream, so humans won't
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
473 have egg heads (ex.: 480x480 + 4:3 = 640x480). However when encoding to AVI
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
474 (DivX) files, you have be aware that AVI headers don't store this value.
10065
422876da049e Error in the aspect ratio calculation, plus typos and rewordings.
diego
parents: 9677
diff changeset
475 Rescaling the movie is disgusting and time consuming, there has to be a better
422876da049e Error in the aspect ratio calculation, plus typos and rewordings.
diego
parents: 9677
diff changeset
476 way!
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
477 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
478
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
479 <para>There is</para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
480
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
481 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
482 MPEG4 has an unique feature: the video stream can contain its needed aspect
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
483 ratio. Yes, just like MPEG1/2 (DVD, SVCD) and H263 files. Regretfully, there are
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
484 <emphasis role="bold">no</emphasis> video players outside which support this
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
485 attribute of MPEG4, except <application>MPlayer</application>.
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
486 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
487
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
488 <para>
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
489 This feature can be used only with <link linkend="ffmpeg">libavcodec</link>'s
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
490 <systemitem>mpeg4</systemitem> codec. Keep in mind: although
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
491 <application>MPlayer</application> will correctly play the created file,
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
492 other players will use the wrong aspect ratio.
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
493 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
494
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
495 <para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
496 You seriously should crop the black bands over and below the movie image.
10065
422876da049e Error in the aspect ratio calculation, plus typos and rewordings.
diego
parents: 9677
diff changeset
497 See the man page for the usage of the <systemitem>cropdetect</systemitem> and
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
498 <systemitem>crop</systemitem> filters.
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
499 </para>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
500
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
501 <para>
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
502 Usage
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
503 <screen>mencoder <replaceable>sample-svcd.mpg</replaceable> -ovc lavc -lavcopts vcodec=mpeg4:autoaspect -vf crop=714:548:0:14 -oac copy -o <replaceable>output.avi</replaceable></screen>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
504 </para>
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
505 </sect1>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
506
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
507 <sect1 id="custommatrices"><title>Custom inter/intra matrices</title>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
508
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
509 <para>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
510 With this feature of <link linkend="ffmpeg">libavcodec</link> you are
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
511 able to set custom inter (I-frames/key frames) and intra (P-frames/predicted
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
512 frames) matrices. It is supported by many of the codecs:
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
513 <systemitem>mpeg1video</systemitem> and <systemitem>mpeg2video</systemitem>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
514 are reported as working.
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
515 </para>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
516
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
517 <para>
11732
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
518 A typical usage of this feature is to set the matrices preferred by the
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
519 <ulink url="http://www.kvcd.net/">KVCD</ulink> specifications.
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
520 </para>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
521
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
522 <para>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
523 The <emphasis role="bold">KVCD &quot;Notch&quot; Quantization Matrix:</emphasis>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
524 </para>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
525
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
526 <para>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
527 Intra:
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
528 <screen>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
529 8 9 12 22 26 27 29 34
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
530 9 10 14 26 27 29 34 37
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
531 12 14 18 27 29 34 37 38
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
532 22 26 27 31 36 37 38 40
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
533 26 27 29 36 39 38 40 48
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
534 27 29 34 37 38 40 48 58
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
535 29 34 37 38 40 48 58 69
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
536 34 37 38 40 48 58 69 79
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
537 </screen>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
538
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
539 Inter:
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
540 <screen>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
541 16 18 20 22 24 26 28 30
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
542 18 20 22 24 26 28 30 32
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
543 20 22 24 26 28 30 32 34
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
544 22 24 26 30 32 32 34 36
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
545 24 26 28 32 34 34 36 38
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
546 26 28 30 32 34 36 38 40
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
547 28 30 32 34 36 38 42 42
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
548 30 32 34 36 38 40 42 44
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
549 </screen>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
550 </para>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
551
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
552 <para>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
553 Usage:
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
554 <screen>
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
555 $ mencoder <replaceable>input.avi</replaceable> -o <replaceable>output.avi</replaceable> -oac copy -ovc lavc -lavcopts inter_matrix=...:intra_matrix=...
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
556 </screen>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
557 </para>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
558
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
559 <para>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
560 <screen>
11710
d37d4bc38f26 <replaceable> tags by Qba <jim85@wp.pl>
wight
parents: 11680
diff changeset
561 $ mencoder <replaceable>input.avi</replaceable> -ovc lavc -lavcopts
10869
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
562 vcodec=mpeg2video:intra_matrix=8,9,12,22,26,27,29,34,9,10,14,26,27,29,34,37,
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
563 12,14,18,27,29,34,37,38,22,26,27,31,36,37,38,40,26,27,29,36,39,38,40,48,27,
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
564 29,34,37,38,40,48,58,29,34,37,38,40,48,58,69,34,37,38,40,48,58,69,79
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
565 :inter_matrix=16,18,20,22,24,26,28,30,18,20,22,24,26,28,30,32,20,22,24,26,
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
566 28,30,32,34,22,24,26,30,32,32,34,36,24,26,28,32,34,34,36,38,26,28,30,32,34,
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
567 36,38,40,28,30,32,34,36,38,42,42,30,32,34,36,38,40,42,44 -oac copy -o svcd.mpg
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
568 </screen>
364d43cee33e sync with HTML
diego
parents: 10429
diff changeset
569 </para>
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
570 </sect1>
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
571
11732
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
572 <sect1 id="menc-feat-dvd-mpeg4">
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
573 <title>Making a high quality MPEG4 (&quot;DivX&quot;) rip of a DVD movie</title>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
574
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
575 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
576 Ripping a DVD title into a maximally high quality MPEG4 (DivX) file
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
577 involves many considerations. Below is an example of the process when
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
578 there is no file size goal (other than perhaps fitting the result into 2GB).
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
579 <systemitem class="library">libavcodec</systemitem> will be used for the video,
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
580 and the audio will be copied as is without any changes.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
581 </para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
582
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
583 <sect2 id="menc-feat-dvd-mpeg4-crop">
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
584 <title>Cropping</title>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
585 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
586 Play the DVD and run the crop detection filter
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
587 (<option>-vf cropdetect</option>) on it. This gives you a crop rectangle
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
588 to use for encoding. The reason for cropping is that many movies are
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
589 not shot in a standard DVD aspect ratio (16/9 or 4/3), or, for whatever
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
590 reason, the picture does not properly fill the frame. So you want to crop
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
591 out the pointless black bars when you rip. It also improves the quality
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
592 of the rip since the sharp edge of the black bars wastes a lot of bits.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
593 A common aspect is 2.35, which is cinescope. Most big blockbuster
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
594 movies have this aspect ratio.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
595 </para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
596 </sect2>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
597
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
598 <sect2 id="menc-feat-dvd-mpeg4-quality">
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
599 <title>Quality level</title>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
600 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
601 Next you need to choose the desired quality level. When there is no
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
602 need to fit the resulting file on CDs or the like, using constant
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
603 quantizing AKA constant quality is a good choice. That way each frame
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
604 is given as much bits as its needs to keep the quality at the desired
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
605 level, but multiple encoding passes are not needed. With
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
606 <systemitem class="library">libavcodec</systemitem>, you get constant
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
607 quality by using
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
608 <option>-lavcopts vqscale=<replaceable>N</replaceable></option>.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
609 <option>vqscale=3</option> should give you a file below 2GB in size,
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
610 depending mainly on the movie length and video noisiness (the more
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
611 noise, the harder it is to compress.)
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
612 </para></sect2>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
613
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
614 <sect2 id="menc-feat-dvd-mpeg4-2gb">
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
615 <title>Files over 2GB</title>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
616 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
617 If the file resulting from constant quality encoding is over 2GB big,
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
618 you will have to create an index to be able to view it properly.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
619 Either
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
620
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
621 <itemizedlist>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
622 <listitem><para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
623 play the file with <option>-forceidx</option> to create an index
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
624 on the fly or
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
625 </para></listitem>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
626 <listitem><para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
627 use <option>-saveidx</option> to write an index to a file once and
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
628 <option>-loadidx</option> to use it when playing the file.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
629 </para></listitem>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
630 </itemizedlist>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
631
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
632 If this bothers you, you may want to keep the file size below 2GB.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
633 </para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
634
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
635 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
636 There are two ways to avoid this. You can try encoding again using
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
637 <option>vqscale=4</option> and see if both the resulting file size
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
638 and picture quality are acceptable. You can also use
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
639 <link linkend="menc-feat-divx4">2 pass encoding</link>.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
640 As you will be copying the audio track as is and hence know its
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
641 bitrate, and you know the running time of the movie, you can
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
642 compute the required bitrate to give to the
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
643 <option>-lavcopts vbitrate=<replaceable>bitrate</replaceable></option>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
644 option without using
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
645 <link linkend="menc-feat-divx4">3 pass encoding</link>.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
646 </para></sect2>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
647
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
648 <sect2 id="menc-feat-dvd-mpeg4-deinterlacing">
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
649 <title>Deinterlacing</title>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
650 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
651 If the movie is interlaced, you may want to deinterlace it as part of
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
652 the ripping. It is debatable whether deinterlacing should be done at
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
653 this stage. The benefit is that deinterlacing when converting to
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
654 MPEG4 makes compression better, and viewing easier and less CPU
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
655 intensive on computer monitors as no deinterlacing is required at
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
656 that stage.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
657 </para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
658
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
659 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
660 If deinterlacing at the ripping stage is a good idea depends on
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
661 the DVD. If the DVD is made from film, which was shot at 24 fps, you
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
662 can as well deinterlace while ripping. If, however, the original was
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
663 50/60 fps video, converting into deinterlaced 23.976/25 fps video
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
664 will lose information. If you do decide to interlace, you can further
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
665 experiment with different deinterlacing filters. See
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
666 <ulink url="http://www.wieser-web.de/MPlayer/">http://www.wieser-web.de/MPlayer/</ulink>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
667 for examples. A good starting point is <option>-vf pp=fd</option>.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
668 </para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
669
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
670 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
671 If you are both cropping and deinterlacing, deinterlace
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
672 <emphasis>before</emphasis> cropping. Actually, this is not necessary
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
673 if the crop offset is vertically a multiple of 2 pixels. However with
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
674 some other filters like dering you should always crop last, so it's a
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
675 good habit to put the crop filter last.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
676 </para></sect2>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
677
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
678 <sect2 id="menc-feat-dvd-mpeg4-telecine">
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
679 <title>Inverse telecine</title>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
680 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
681 If you are ripping a PAL DVD, which is 25 fps, you do not need to
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
682 think about the fps. Just use 25 fps. NTSC DVDs on the other hand are
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
683 29.97 fps (often rounded to 30 fps, but that is not what they are).
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
684 If the movie was shot for TV, you again do not need to touch the fps.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
685 But if the movie was shot on film, and hence at (exactly) 24 fps,
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
686 it has been converted to 29.97 fps when making the DVD. That
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
687 conversion where 12 fields are added to each 24 frames of film is
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
688 called telecine. For more info about telecine, see a
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
689 <ulink url="http://www.google.com/search?q=telecine+field+23.976">
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
690 Google search for &quot;telecine field 23.976&quot;</ulink>.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
691 </para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
692
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
693 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
694 In case you have such a telecined DVD, you will want to do inverse
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
695 telecine, that is convert the movie to 23.976 fps (29.97*4/5).
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
696 Otherwise camera panning will look jerky and awful. You can use
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
697 <option>-ofps 23.976</option> for this. Anything that is shown in
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
698 theatres is shot on film and needs inverse telecine, TV shows do not.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
699 </para></sect2>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
700
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
701 <sect2 id="menc-feat-dvd-mpeg4-scaling">
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
702 <title>Scaling and aspect ratio</title>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
703 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
704 For best quality, do not scale the movie while ripping. Scaling
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
705 causes artifacts and makes the file larger. Pixels in DVD movies
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
706 are not square, so DVD movies include info about the correct aspect
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
707 ratio. It is possible to store the aspect ratio in the MPEG4 header
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
708 of the output file. Most video players ignore this info, but
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
709 <application>MPlayer</application> honors it. So if you are only
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
710 going to use <application>MPlayer</application> for viewing the
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
711 ripped file, you do not need to scale the movie, just pass
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
712 <option>-lavcopts autoaspect</option> to
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
713 <application>MEncoder</application> and things will
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
714 automagically work right. If you must scale the movie, be
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
715 careful about getting the size right especially if you do cropping.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
716 </para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
717 </sect2>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
718
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
719 <sect2 id="menc-feat-dvd-mpeg4-summary">
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
720 <title>Summing it up</title>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
721 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
722 With all of the above mentioned in mind, a suitable encoding command
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
723 might be
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
724
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
725 <screen>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
726 mencoder dvd://1 -aid 128 -oac copy -ovc lavc -lavcopts vcodec=mpeg4:vqscale=3:vhq:v4mv:trell:autoaspect \
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
727 -ofps 23.976 -vf crop=720:364:0:56 -o Harry_Potter_2.avi
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
728 </screen>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
729
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
730 Here <option>dvd://1</option> gives the DVD title to rip. Option
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
731 <option>-aid 128</option> says to use audio track 128, and
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
732 <option>-oac copy</option> to copy it as is. You'll have to use
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
733 <application>MPlayer</application> to find out the right values for
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
734 these options.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
735 </para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
736
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
737 <para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
738 Options <option>vhq:v4mv:trell</option> for
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
739 <option>-lavcopts</option> improve quality versus bitrate, but make
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
740 encoding take longer. Especially <option>trell</option> slows
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
741 encoding down but also increases quality visibly. If you want to
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
742 deinterlace, add a <option>pp</option> filter to
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
743 <option>-vf</option>, for example
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
744 <option>-vf pp=fd,crop=720:364:0:56</option> (in that order). If you don't need
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
745 inverse telecine, leave out the <option>-ofps 23.976</option>.
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
746 </para>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
747 </sect2>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
748
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
749 </sect1>
d5784b575959 DVD ripping section added courtesy of Samuli K¸«£rkk¸«£inen with some
diego
parents: 11710
diff changeset
750
9675
62c5a17038ba XML version of MPlayer's doc
nicolas
parents:
diff changeset
751 </chapter>