Mercurial > mplayer.hg
annotate DOCS/xml/en/faq.xml @ 35643:f8eb470c25ea
Add doxygen comments.
author | ib |
---|---|
date | Sat, 12 Jan 2013 00:04:24 +0000 |
parents | 3e1a7cf7b7da |
children |
rev | line source |
---|---|
20535 | 1 <?xml version="1.0" encoding="utf-8"?> |
10913
49b1a67e7381
Add revision keyword to english xml files, to ease translation synchronization
lumag
parents:
10631
diff
changeset
|
2 <!-- $Revision$ --> |
9675 | 3 <chapter id="faq" xreflabel="FAQ"> |
4 <title>Frequently Asked Questions</title> | |
5 | |
10373 | 6 <qandaset defaultlabel="qanda"> |
7 | |
8 <qandadiv id="faq-development"> | |
9 <title>Development</title> | |
10 | |
11 <qandaentry> | |
12 <question><para> | |
13 How do I create a proper patch for <application>MPlayer</application>? | |
14 </para></question> | |
15 <answer><para> | |
16 We made a <ulink url="../../tech/patches.txt">short document</ulink> | |
17 describing all the necessary details. Please follow the instructions. | |
18 </para></answer> | |
19 </qandaentry> | |
20 | |
21 <qandaentry> | |
22 <question><para> | |
11813 | 23 How do I translate <application>MPlayer</application> to a new language? |
24 </para></question> | |
25 <answer><para> | |
26 Read the <ulink url="../../tech/translations.txt">translation HOWTO</ulink>, | |
27 it should explain everything. You can get further help on the | |
19709 | 28 <ulink url="http://lists.mplayerhq.hu/mailman/listinfo/mplayer-translations">MPlayer-translations</ulink> |
11813 | 29 mailing list. |
30 </para></answer> | |
31 </qandaentry> | |
32 | |
33 <qandaentry> | |
34 <question><para> | |
10373 | 35 How can I support <application>MPlayer</application> development? |
36 </para></question> | |
37 <answer><para> | |
38 We are more than happy to accept your hardware and software | |
17706
83c1acef76d5
New website structure, the /homepage subdirectory is gone.
diego
parents:
17424
diff
changeset
|
39 <ulink url="http://www.mplayerhq.hu/donations.html">donations</ulink>. |
11540 | 40 They help us in continuously improving <application>MPlayer</application>. |
10373 | 41 </para></answer> |
42 </qandaentry> | |
43 | |
44 <qandaentry> | |
45 <question><para> | |
46 How can I become an <application>MPlayer</application> developer? | |
47 </para></question> | |
48 <answer><para> | |
49 We always welcome coders and documenters. Read the | |
50 <ulink url="../../tech/">technical documentation</ulink> | |
51 to get a first grasp. Then you should subscribe to the | |
19709 | 52 <ulink url="http://lists.mplayerhq.hu/mailman/listinfo/mplayer-dev-eng">MPlayer-dev-eng</ulink> |
11813 | 53 mailing list and start coding. If you want to help out with the documentation, |
54 join the | |
19709 | 55 <ulink url="http://lists.mplayerhq.hu/mailman/listinfo/mplayer-docs">MPlayer-docs</ulink> |
11813 | 56 mailing list. |
10373 | 57 </para></answer> |
58 </qandaentry> | |
59 | |
60 <qandaentry> | |
61 <question><para> | |
62 Why don't you use autoconf/automake? | |
63 </para></question> | |
64 <answer><para> | |
65 We have a modular, handwritten build system. It does a reasonably good | |
66 job, so why change? Besides, we dislike the auto* tools, just like | |
67 <ulink url="http://freshmeat.net/articles/view/889/">other people</ulink>. | |
68 </para></answer> | |
69 </qandaentry> | |
70 </qandadiv> | |
9675 | 71 |
21521 | 72 <!-- ********** --> |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
73 |
16665
dfa3bd6ee92b
Rename compilation section to compilation and installation.
diego
parents:
16658
diff
changeset
|
74 <qandadiv id="faq-compilation-installation"> |
dfa3bd6ee92b
Rename compilation section to compilation and installation.
diego
parents:
16658
diff
changeset
|
75 <title>Compilation and installation</title> |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
76 |
9675 | 77 <qandaentry> |
78 <question><para> | |
14824 | 79 Compilation fails with an error and <application>gcc</application> bails out |
80 with some cryptic message containing the phrase | |
81 <systemitem>internal compiler error</systemitem> or | |
21912 | 82 <systemitem>unable to find a register to spill</systemitem> or |
83 <systemitem>can't find a register in class `GENERAL_REGS' | |
23574
9f2d63b24552
added some carriage returns and full stops, plus a missing 'option'
ptt
parents:
21912
diff
changeset
|
84 while reloading `asm'</systemitem>. |
9f2d63b24552
added some carriage returns and full stops, plus a missing 'option'
ptt
parents:
21912
diff
changeset
|
85 </para></question> |
14824 | 86 <answer><para> |
87 You have stumbled over a bug in <application>gcc</application>. Please | |
88 <ulink url="http://gcc.gnu.org/bugs.html">report it to the gcc team</ulink> | |
89 but not to us. For some reason <application>MPlayer</application> seems to | |
90 trigger compiler bugs frequently. Nevertheless we cannot fix them and do not | |
14829
e76a8c56d81b
Recommend using a stable gcc version or upgrading frequently, suggested by Rich.
diego
parents:
14824
diff
changeset
|
91 add workarounds for compiler bugs to our sources. To avoid this problem, |
e76a8c56d81b
Recommend using a stable gcc version or upgrading frequently, suggested by Rich.
diego
parents:
14824
diff
changeset
|
92 either stick with a compiler version that is known to be reliable and |
e76a8c56d81b
Recommend using a stable gcc version or upgrading frequently, suggested by Rich.
diego
parents:
14824
diff
changeset
|
93 stable, or upgrade frequently. |
14824 | 94 </para></answer> |
95 </qandaentry> | |
96 | |
97 <qandaentry> | |
98 <question><para> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
99 Are there binary (RPM/Debian) packages of <application>MPlayer</application>? |
10373 | 100 </para></question> |
101 <answer><para> | |
102 See the <link linkend="debian">Debian</link> and <link linkend="rpm">RPM</link> | |
103 section for details. | |
104 </para></answer> | |
105 </qandaentry> | |
106 | |
107 <qandaentry> | |
108 <question><para> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
109 How can I build a 32 bit <application>MPlayer</application> on a 64 bit Athlon? |
14654
ca1f3ca346b3
Add Reimar's hint for building 32 bit MPlayer on Athlon64.
diego
parents:
14615
diff
changeset
|
110 </para></question> |
ca1f3ca346b3
Add Reimar's hint for building 32 bit MPlayer on Athlon64.
diego
parents:
14615
diff
changeset
|
111 <answer><para> |
ca1f3ca346b3
Add Reimar's hint for building 32 bit MPlayer on Athlon64.
diego
parents:
14615
diff
changeset
|
112 Try the following configure options: |
ca1f3ca346b3
Add Reimar's hint for building 32 bit MPlayer on Athlon64.
diego
parents:
14615
diff
changeset
|
113 <screen> |
27651
f445847b8ec1
fix FAQ about compiling 32 bit mplayer on x86_64
gpoirier
parents:
27198
diff
changeset
|
114 ./configure --target=i386-linux --cc="gcc -m32" --as="as --32" --with-extralibdir=/usr/lib |
14654
ca1f3ca346b3
Add Reimar's hint for building 32 bit MPlayer on Athlon64.
diego
parents:
14615
diff
changeset
|
115 </screen> |
ca1f3ca346b3
Add Reimar's hint for building 32 bit MPlayer on Athlon64.
diego
parents:
14615
diff
changeset
|
116 </para></answer> |
ca1f3ca346b3
Add Reimar's hint for building 32 bit MPlayer on Athlon64.
diego
parents:
14615
diff
changeset
|
117 </qandaentry> |
ca1f3ca346b3
Add Reimar's hint for building 32 bit MPlayer on Athlon64.
diego
parents:
14615
diff
changeset
|
118 |
ca1f3ca346b3
Add Reimar's hint for building 32 bit MPlayer on Athlon64.
diego
parents:
14615
diff
changeset
|
119 <qandaentry> |
ca1f3ca346b3
Add Reimar's hint for building 32 bit MPlayer on Athlon64.
diego
parents:
14615
diff
changeset
|
120 <question><para> |
11540 | 121 Configure ends with this text, and <application>MPlayer</application> won't compile! |
9675 | 122 <screen>Your gcc does not support even i386 for '-march' and '-mcpu'</screen> |
123 </para></question> | |
124 <answer><para> | |
31349
92d75e703bc0
Rename configure.log file to the more standard name config.log.
diego
parents:
30820
diff
changeset
|
125 Your gcc isn't installed correctly, check the <filename>config.log</filename> |
9675 | 126 file for details. |
127 </para></answer> | |
128 </qandaentry> | |
129 | |
130 <qandaentry> | |
131 <question><para> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
132 I have a Matrox G200/G400/G450/G550, how do I compile/use the |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
133 <systemitem>mga_vid</systemitem> driver? |
9675 | 134 </para></question> |
135 <answer><para> | |
10373 | 136 Read the <link linkend="mga_vid">mga_vid</link> section. |
9675 | 137 </para></answer> |
138 </qandaentry> | |
139 | |
140 <qandaentry> | |
141 <question><para> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
142 During 'make', <application>MPlayer</application> complains about |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
143 missing X11 libraries. I don't understand, I <emphasis>do</emphasis> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
144 have X11 installed!? |
9675 | 145 </para></question> |
146 <answer><para> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
147 ... but you don't have the X11 development package installed. Or not correctly. |
20641 | 148 It's called <filename>XFree86-devel*</filename> under Red Hat, |
149 <filename>xlibs-dev</filename> under Debian Woody and | |
14615
f1c2f7046748
Remove overly outdated entries, update a few others.
diego
parents:
14320
diff
changeset
|
150 <filename>libx11-dev</filename> under Debian Sarge. Also check if the |
9675 | 151 <filename class="directory">/usr/X11</filename> and |
23588
a44fc12de744
Nico claims to never have had any problems with X11 compilation on Mandrake.
diego
parents:
23574
diff
changeset
|
152 <filename class="directory">/usr/include/X11</filename> symlinks exist. |
9675 | 153 </para></answer> |
154 </qandaentry> | |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
155 </qandadiv> |
18925
7e6f4455b732
Building on Mac OS 10.3 leads to several link errors: this new FAQ entry explains how to overcome this problem
gpoirier
parents:
17706
diff
changeset
|
156 |
21521 | 157 <!-- ********** --> |
9675 | 158 |
159 <qandadiv id="faq-general"> | |
160 <title>General questions</title> | |
10373 | 161 |
9675 | 162 <qandaentry> |
163 <question><para> | |
10373 | 164 Are there any mailing lists on <application>MPlayer</application>? |
9675 | 165 </para></question> |
166 <answer><para> | |
19726
a7c1cd01d515
Mailing list descriptions are on the homepage, remove from here.
diego
parents:
19713
diff
changeset
|
167 Yes. Look at the |
19795 | 168 <ulink url="http://www.mplayerhq.hu/design7/mailing_lists.html">mailing lists section</ulink> |
19726
a7c1cd01d515
Mailing list descriptions are on the homepage, remove from here.
diego
parents:
19713
diff
changeset
|
169 of our homepage. |
9675 | 170 </para></answer> |
171 </qandaentry> | |
172 | |
173 <qandaentry> | |
174 <question><para> | |
21521 | 175 I've found a nasty bug when I tried to play my favorite video! |
176 Who should I inform? | |
9675 | 177 </para></question> |
178 <answer><para> | |
21521 | 179 Please read the <link linkend="bugreports">bug reporting guidelines</link> |
10373 | 180 and follow the instructions. |
9675 | 181 </para></answer> |
182 </qandaentry> | |
183 | |
184 <qandaentry> | |
185 <question><para> | |
28165 | 186 I get a core dump when trying to dump streams, what's wrong? |
187 </para></question> | |
188 <answer><para> | |
189 Don't panic. Make sure you know where your towel is.</para> | |
190 <para> | |
191 Seriously, notice the smiley and start looking for files that end in | |
192 <filename>.dump</filename>. | |
193 </para></answer> | |
194 </qandaentry> | |
195 | |
196 <qandaentry> | |
197 <question><para> | |
10373 | 198 When I start playing, I get this message but everything seems fine: |
199 <screen>Linux RTC init: ioctl (rtc_pie_on): Permission denied</screen> | |
9675 | 200 </para></question> |
201 <answer><para> | |
21521 | 202 You need a specially set up kernel to use the RTC timing code. |
203 For details see the <link linkend="rtc">RTC</link> section of the documentation. | |
9675 | 204 </para></answer> |
205 </qandaentry> | |
206 | |
207 <qandaentry> | |
208 <question><para> | |
13547
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
209 How can I make a screenshot? |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
210 </para></question> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
211 <answer><para> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
212 You have to use a video output driver that does not employ an overlay to be |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
213 able to take a screenshot. Under X11, <option>-vo x11</option> will do, under |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
214 Windows <option>-vo directx:noaccel</option> works. |
16562
9b05da9f128c
Screenshots can now be taken with -vf screenshot, based on a patch by Oded.
diego
parents:
16341
diff
changeset
|
215 </para> |
9b05da9f128c
Screenshots can now be taken with -vf screenshot, based on a patch by Oded.
diego
parents:
16341
diff
changeset
|
216 <para> |
9b05da9f128c
Screenshots can now be taken with -vf screenshot, based on a patch by Oded.
diego
parents:
16341
diff
changeset
|
217 Alternatively you can run <application>MPlayer</application> with the |
9b05da9f128c
Screenshots can now be taken with -vf screenshot, based on a patch by Oded.
diego
parents:
16341
diff
changeset
|
218 <systemitem>screenshot</systemitem> video filter |
9b05da9f128c
Screenshots can now be taken with -vf screenshot, based on a patch by Oded.
diego
parents:
16341
diff
changeset
|
219 (<option>-vf screenshot</option>), and press the <keycap>s</keycap> |
9b05da9f128c
Screenshots can now be taken with -vf screenshot, based on a patch by Oded.
diego
parents:
16341
diff
changeset
|
220 key to grab a screenshot. |
13547
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
221 </para></answer> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
222 </qandaentry> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
223 |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
224 <qandaentry> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
225 <question><para> |
9675 | 226 What is the meaning of the numbers on the status line? |
227 </para></question> | |
228 <answer><para> | |
229 Example: | |
21521 | 230 <screen> |
231 A: 2.1 V: 2.2 A-V: -0.167 ct: 0.042 57/57 41% 0% 2.6% 0 4 49% 1.00x | |
232 </screen> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
233 <variablelist> |
21521 | 234 <varlistentry> |
235 <term><systemitem>A: 2.1</systemitem></term> | |
236 <listitem><para>audio position in seconds</para></listitem> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
237 </varlistentry> |
21521 | 238 <varlistentry> |
239 <term><systemitem>V: 2.2</systemitem></term> | |
240 <listitem><para>video position in seconds</para></listitem> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
241 </varlistentry> |
21521 | 242 <varlistentry> |
243 <term><systemitem>A-V: -0.167</systemitem></term> | |
244 <listitem><para>audio-video difference in seconds (delay)</para></listitem> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
245 </varlistentry> |
21521 | 246 <varlistentry> |
247 <term><systemitem>ct: 0.042</systemitem></term> | |
248 <listitem><para>total A-V sync correction done</para></listitem> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
249 </varlistentry> |
21521 | 250 <varlistentry> |
251 <term><systemitem>57/57</systemitem></term> | |
252 <listitem><para> | |
253 frames played/decoded (counting from last seek) | |
254 </para></listitem> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
255 </varlistentry> |
21521 | 256 <varlistentry> |
257 <term><systemitem>41%</systemitem></term> | |
258 <listitem><para> | |
259 video codec CPU usage in percent | |
260 (for slice rendering and direct rendering this includes video_out) | |
261 </para></listitem> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
262 </varlistentry> |
21521 | 263 <varlistentry> |
264 <term><systemitem>0%</systemitem></term> | |
265 <listitem><para>video_out CPU usage</para></listitem> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
266 </varlistentry> |
21521 | 267 <varlistentry> |
268 <term><systemitem>2.6%</systemitem></term> | |
269 <listitem><para>audio codec CPU usage in percent</para></listitem> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
270 </varlistentry> |
21521 | 271 <varlistentry> |
272 <term><systemitem>0</systemitem></term> | |
273 <listitem><para>frames dropped to maintain A-V sync</para></listitem> | |
274 </varlistentry> | |
275 <varlistentry> | |
276 <term><systemitem>4</systemitem></term> | |
277 <listitem><para> | |
278 current level of image postprocessing (when using <option>-autoq</option>) | |
279 </para></listitem> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
280 </varlistentry> |
21521 | 281 <varlistentry> |
282 <term><systemitem>49%</systemitem></term> | |
283 <listitem><para> | |
284 current cache size used (around 50% is normal) | |
285 </para></listitem> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
286 </varlistentry> |
21521 | 287 <varlistentry> |
288 <term><systemitem>1.00x</systemitem></term> | |
289 <listitem><para>playback speed as a factor of original speed</para></listitem> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
290 </varlistentry> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
291 </variablelist> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
292 Most of them are for debug purposes, use the <option>-quiet</option> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
293 option to make them disappear. |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
294 You might notice that video_out CPU usage is zero (0%) for some files. |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
295 This is because it is called directly from the codec and thus cannot |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
296 be measured separately. If you wish to know the video_out speed, compare |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
297 the difference when playing the file with <option>-vo null</option> and |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
298 your usual video output driver. |
9675 | 299 </para></answer> |
300 </qandaentry> | |
301 | |
302 <qandaentry> | |
303 <question><para> | |
21521 | 304 There are error messages about file not found |
305 <filename>/usr/local/lib/codecs/</filename> ... | |
9675 | 306 </para></question> |
307 <answer><para> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
308 Download and install the binary codecs from our |
19803
a8367d5b416b
link fix: The codecs page was merged into the download page.
diego
parents:
19795
diff
changeset
|
309 <ulink url="http://www.mplayerhq.hu/design7/dload.html">download page</ulink>. |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
310 </para></answer> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
311 </qandaentry> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
312 |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
313 <qandaentry> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
314 <question><para> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
315 How can I make <application>MPlayer</application> remember the options I |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
316 use for a particular file, e.g. <filename>movie.avi</filename>? |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
317 </para></question> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
318 <answer><para> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
319 Create a file named <filename>movie.avi.conf</filename> with the file-specific |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
320 options in it and put it in <filename class="directory">~/.mplayer</filename> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
321 or in the same directory as the file. |
9675 | 322 </para></answer> |
323 </qandaentry> | |
324 | |
325 <qandaentry> | |
326 <question><para> | |
327 Subtitles are very nice, the most beautiful I've ever seen, but they | |
328 slow down playing! I know it's unlikely ... | |
329 </para></question> | |
330 <answer><para> | |
21521 | 331 After running <filename>./configure</filename>, |
332 edit <filename>config.h</filename> and replace | |
333 <systemitem>#undef FAST_OSD</systemitem> with | |
9675 | 334 <systemitem>#define FAST_OSD</systemitem>. Then recompile. |
335 </para></answer> | |
336 </qandaentry> | |
337 | |
338 <qandaentry> | |
339 <question><para> | |
11540 | 340 How can I run <application>MPlayer</application> in the background? |
9675 | 341 </para></question> |
342 <answer><para> | |
343 Use: | |
21521 | 344 <screen> |
345 mplayer <replaceable>options</replaceable> <replaceable>filename</replaceable> < /dev/null & | |
346 </screen> | |
9675 | 347 </para></answer> |
348 </qandaentry> | |
349 </qandadiv> | |
350 | |
21521 | 351 <!-- ********** --> |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
352 |
9675 | 353 <qandadiv id="faq-playback"> |
354 <title>Playback problems</title> | |
10490 | 355 |
356 <qandaentry> | |
357 <question><para> | |
14995 | 358 I cannot pinpoint the cause of some strange playback problem. |
359 </para></question> | |
360 <answer><para> | |
361 Do you have a stray <filename>codecs.conf</filename> file in | |
362 <filename>~/.mplayer/</filename>, <filename>/etc/</filename>, | |
363 <filename>/usr/local/etc/</filename> or a similar location? Remove it, | |
15027
2165a2306f02
Rephrase codecs.conf entry to warn more clearly against using it.
diego
parents:
14995
diff
changeset
|
364 an outdated <filename>codecs.conf</filename> file can cause obscure |
2165a2306f02
Rephrase codecs.conf entry to warn more clearly against using it.
diego
parents:
14995
diff
changeset
|
365 problems and is intended for use only by developers working on codec |
2165a2306f02
Rephrase codecs.conf entry to warn more clearly against using it.
diego
parents:
14995
diff
changeset
|
366 support. It overrides <application>MPlayer</application>'s internal |
2165a2306f02
Rephrase codecs.conf entry to warn more clearly against using it.
diego
parents:
14995
diff
changeset
|
367 codec settings, which will wreak havoc if incompatible changes are |
2165a2306f02
Rephrase codecs.conf entry to warn more clearly against using it.
diego
parents:
14995
diff
changeset
|
368 made in newer program versions. Unless used by experts it is a recipe |
2165a2306f02
Rephrase codecs.conf entry to warn more clearly against using it.
diego
parents:
14995
diff
changeset
|
369 for disaster in the form of seemingly random and very hard to localize |
2165a2306f02
Rephrase codecs.conf entry to warn more clearly against using it.
diego
parents:
14995
diff
changeset
|
370 crashes and playback problems. If you still have it somewhere on your |
2165a2306f02
Rephrase codecs.conf entry to warn more clearly against using it.
diego
parents:
14995
diff
changeset
|
371 system, you should remove it now. |
14995 | 372 </para></answer> |
373 </qandaentry> | |
374 | |
375 <qandaentry> | |
376 <question><para> | |
16821 | 377 How can I get subtitles to appear on the black margins around a movie? |
378 </para></question> | |
379 <answer><para> | |
380 Use the <systemitem>expand</systemitem> video filter to increase the | |
381 area onto which the movie is rendered vertically and place the movie | |
382 at the top border, for example: | |
21689 | 383 <screen>mplayer -vf expand=0:-100:0:0 -slang de dvd://1</screen> |
16821 | 384 </para></answer> |
385 </qandaentry> | |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
386 |
16821 | 387 <qandaentry> |
388 <question><para> | |
13547
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
389 How can I select audio/subtitle tracks from a DVD, OGM, Matroska or NUT file? |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
390 </para></question> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
391 <answer><para> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
392 You have to use <option>-aid</option> (audio ID) or <option>-alang</option> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
393 (audio language), <option>-sid</option>(subtitle ID) or <option>-slang</option> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
394 (subtitle language), for example: |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
395 <screen> |
16822
7fba58dee6c7
Add a few more XML tags for better semantics markup.
diego
parents:
16821
diff
changeset
|
396 mplayer -alang eng -slang eng <replaceable>example.mkv</replaceable> |
7fba58dee6c7
Add a few more XML tags for better semantics markup.
diego
parents:
16821
diff
changeset
|
397 mplayer -aid 1 -sid 1 <replaceable>example.mkv</replaceable> |
13547
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
398 </screen> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
399 To see which ones are available: |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
400 <screen> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
401 mplayer -vo null -ao null -frames 0 -v <replaceable>filename</replaceable> | grep sid |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
402 mplayer -vo null -ao null -frames 0 -v <replaceable>filename</replaceable> | grep aid |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
403 </screen> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
404 </para></answer> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
405 </qandaentry> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
406 |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
407 <qandaentry> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
408 <question><para> |
12437 | 409 I'm trying to play a random stream off the internet but it fails. |
410 </para></question> | |
411 <answer><para> | |
412 Try playing the stream with the <option>-playlist</option> option. | |
413 </para></answer> | |
414 </qandaentry> | |
415 | |
416 <qandaentry> | |
417 <question><para> | |
12323 | 418 I downloaded a movie off a P2P network and it doesn't work! |
419 </para></question> | |
420 <answer><para> | |
421 Your file is most probably broken or a fake file. If you got it from | |
422 a friend, and he says it works, try comparing | |
423 <application>md5sum</application> hashes. | |
424 </para></answer> | |
425 </qandaentry> | |
426 | |
427 <qandaentry> | |
428 <question><para> | |
429 I'm having trouble getting my subtitles to display, help!! | |
430 </para></question> | |
431 <answer><para> | |
432 Make sure you have installed fonts properly. Run through the steps in the | |
19822
db95db082c37
Move subtitles and OSD section from the installation to the usage chapter.
diego
parents:
19821
diff
changeset
|
433 <link linkend="fonts-osd">Fonts and OSD</link> part of the installation |
12323 | 434 section again. If you are using TrueType fonts, verify that you have the |
14615
f1c2f7046748
Remove overly outdated entries, update a few others.
diego
parents:
14320
diff
changeset
|
435 <systemitem class="library">FreeType</systemitem> library installed. |
12323 | 436 Other things include checking your subtitles in a text editor or with other |
437 players. Also try converting them to another format. | |
438 </para></answer> | |
439 </qandaentry> | |
440 | |
441 <qandaentry> | |
442 <question><para> | |
12026 | 443 Why doesn't <application>MPlayer</application> work on Fedora Core? |
444 </para></question> | |
445 <answer><para> | |
446 There is a bad interaction on Fedora between exec-shield, | |
447 prelink, and any applications which use Windows DLLs | |
448 (such as <application>MPlayer</application>). | |
449 </para> | |
450 <para> | |
451 The problem is that exec-shield randomizes the load addresses of all the | |
452 system libraries. This randomization happens at prelink time (once every | |
453 two weeks). | |
454 </para> | |
455 <para> | |
456 When <application>MPlayer</application> tries to load a Windows DLL it | |
457 wants to put it at a specific address (0x400000). If an important system | |
12079
c931c69d2525
added <application> tag and some 10l, patch by frogu <l_j_p@wp.pl>
paszczi
parents:
12026
diff
changeset
|
458 library happens to be there already, <application>MPlayer</application> |
c931c69d2525
added <application> tag and some 10l, patch by frogu <l_j_p@wp.pl>
paszczi
parents:
12026
diff
changeset
|
459 will crash. |
12026 | 460 (A typical symptom would be a segmentation fault when trying |
461 to play Windows Media 9 files.) | |
462 </para> | |
463 <para> | |
464 If you run into this problem you have two options: | |
465 <itemizedlist> | |
21521 | 466 <listitem><para> |
467 Wait two weeks. It might start working again. | |
468 </para></listitem> | |
469 <listitem><para> | |
470 Relink all the binaries on the system with different | |
471 prelink options. Here are step by step instructions: | |
472 </para> | |
473 <procedure> | |
474 <step><para> | |
21689 | 475 Edit <filename>/etc/syconfig/prelink</filename> and change |
476 <programlisting>PRELINK_OPTS=-mR</programlisting> to | |
477 <programlisting>PRELINK_OPTS="-mR --no-exec-shield"</programlisting> | |
21521 | 478 </para></step> |
479 <step><para> | |
480 <command>touch /var/lib/misc/prelink.force</command> | |
481 </para></step> | |
21689 | 482 <step><para> |
483 <command>/etc/cron.daily/prelink</command> | |
484 (This relinks all the applications, and it takes quite a while.) | |
21521 | 485 </para></step> |
486 <step><para> | |
487 <command>execstack -s <replaceable>/path/to/</replaceable>mplayer</command> | |
488 (This turns off exec-shield for the | |
21689 | 489 <application>MPlayer</application> binary.) |
21521 | 490 </para></step> |
491 </procedure> | |
12026 | 492 </listitem> |
493 </itemizedlist> | |
494 </para></answer> | |
495 </qandaentry> | |
496 | |
497 <qandaentry> | |
498 <question><para> | |
11532 | 499 <application>MPlayer</application> dies with |
500 <screen>MPlayer interrupted by signal 4 in module: decode_video</screen> | |
9675 | 501 </para></question> |
502 <answer><para> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
503 Don't use <application>MPlayer</application> on a CPU different from the one |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
504 it was compiled on or recompile with runtime CPU detection |
11540 | 505 (<command>./configure --enable-runtime-cpudetection</command>). |
9675 | 506 </para></answer> |
507 </qandaentry> | |
10373 | 508 |
9675 | 509 <qandaentry> |
510 <question><para> | |
21521 | 511 When I try to grab from my tuner, it works, but colors are strange. |
512 It's OK with other applications. | |
9675 | 513 </para></question> |
514 <answer><para> | |
12348 | 515 Your card probably reports some colorspaces as supported when in fact |
516 it does not support them. Try with YUY2 instead of the | |
10373 | 517 default YV12 (see the <link linkend="tv-input">TV</link> section). |
9675 | 518 </para></answer> |
519 </qandaentry> | |
10373 | 520 |
9675 | 521 <qandaentry> |
522 <question><para> | |
21521 | 523 I get very strange percentage values (way too big) |
524 while playing files on my notebook. | |
9675 | 525 </para></question> |
526 <answer><para> | |
527 It's an effect of the power management / power saving system of your notebook | |
10042 | 528 (BIOS, not kernel). Plug the external power connector in |
21521 | 529 <emphasis role="bold">before</emphasis> you power on your notebook. You can |
530 also try whether | |
531 <ulink url="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufreq.html">cpufreq</ulink> | |
10042 | 532 (a SpeedStep interface for Linux) helps you. |
9675 | 533 </para></answer> |
534 </qandaentry> | |
10373 | 535 |
9675 | 536 <qandaentry> |
537 <question><para> | |
21521 | 538 The audio/video gets totally out of sync when I run |
539 <application>MPlayer</application> as | |
540 <systemitem class="username">root</systemitem> on my notebook. | |
541 It works normal when i run it as a user. | |
9675 | 542 </para></question> |
543 <answer><para> | |
544 This is again a power management effect (see above). Plug the external power | |
545 connector in <emphasis role="bold">before</emphasis> you power on your notebook | |
28672
db8a23c94c16
Update faq about power management effect taking into account that
bircoph
parents:
28625
diff
changeset
|
546 or make sure you do not use the <option>-rtc</option> option. |
9675 | 547 </para></answer> |
548 </qandaentry> | |
10373 | 549 |
550 <qandaentry> | |
9722 | 551 <question><para> |
10042 | 552 While playing a movie it suddenly gets jerky and I get the following message: |
9722 | 553 <screen>Badly interleaved AVI file detected - switching to -ni mode...</screen> |
554 </para></question> | |
555 <answer><para> | |
10042 | 556 Badly interleaved files and <option>-cache</option> don't work well together. |
9722 | 557 Try <option>-nocache</option>. |
558 </para></answer> | |
559 </qandaentry> | |
15835 | 560 </qandadiv> |
11124 | 561 |
21521 | 562 <!-- ********** --> |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
563 |
9675 | 564 <qandadiv id="faq-driver"> |
565 <title>Video/audio driver problems (vo/ao)</title> | |
13547
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
566 |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
567 <qandaentry> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
568 <question><para> |
16007
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
569 When I go into fullscreen mode I just get black borders around the image |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
570 and no real scaling to fullscreen mode. |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
571 </para></question> |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
572 <answer><para> |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
573 Your video output driver does not support scaling in hardware and since |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
574 scaling in software can be incredibly slow <application>MPlayer</application> |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
575 does not automatically enable it. Most likely you are using the |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
576 <systemitem>x11</systemitem> instead of the <systemitem>xv</systemitem> |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
577 video output driver. Try adding <option>-vo xv</option> to the command |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
578 line or read the <link linkend="video">video section</link> to find out |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
579 about alternative video output drivers. The <option>-zoom</option> |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
580 option explicitly enables software scaling. |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
581 </para></answer> |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
582 </qandaentry> |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
583 |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
584 <qandaentry> |
1759eaaf3382
FAQ No 1: Fullscreen is not working, black borders around unscaled image.
diego
parents:
16006
diff
changeset
|
585 <question><para> |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
586 I've just installed <application>MPlayer</application>. When I want to |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
587 open a video file it causes a fatal error: |
21689 | 588 <screen>Error opening/initializing the selected video_out (-vo) device.</screen> |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
589 How can I solve my problem? |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
590 </para></question> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
591 <answer><para> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
592 Just change your video output device. Issue the following command to get |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
593 a list of available video output drivers: |
21521 | 594 <screen>mplayer -vo help</screen> |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
595 After you've chosen the correct video output driver, add it to |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
596 your configuration file. Add |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
597 <programlisting> |
21521 | 598 vo = <replaceable>selected_vo</replaceable> |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
599 </programlisting> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
600 to <filename>~/.mplayer/config</filename> and/or |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
601 <programlisting> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
602 vo_driver = <replaceable>selected_vo</replaceable> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
603 </programlisting> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
604 to <filename>~/.mplayer/gui.conf</filename>. |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
605 </para></answer> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
606 </qandaentry> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
607 |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
608 <qandaentry> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
609 <question><para> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
610 I have problems with <replaceable>[your window manager]</replaceable> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
611 and fullscreen xv/xmga/sdl/x11 modes ... |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
612 </para></question> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
613 <answer><para> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
614 Read the <link linkend="bugreports">bug reporting guidelines</link> and send us |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
615 a proper bug report. |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
616 Also try experimenting with the <option>-fstype</option> option. |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
617 </para></answer> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
618 </qandaentry> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
619 |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
620 <qandaentry> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
621 <question><para> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
622 Audio goes out of sync playing an AVI file. |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
623 </para></question> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
624 <answer><para> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
625 Try the <option>-bps</option> or <option>-nobps</option> option. If it does not |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
626 improve, read the |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
627 <link linkend="bugreports">bug reporting guidelines</link> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
628 and upload the file to FTP. |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
629 </para></answer> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
630 </qandaentry> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
631 |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
632 <qandaentry> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
633 <question><para> |
13547
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
634 How can I use <application>dmix</application> with |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
635 <application>MPlayer</application>? |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
636 </para></question> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
637 <answer><para> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
638 After setting up your |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
639 <ulink url="http://alsa.opensrc.org/index.php?page=DmixPlugin">asoundrc</ulink> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
640 you have to use <option>-ao alsa:device=dmix</option>. |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
641 </para></answer> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
642 </qandaentry> |
144af0141ac4
How to take a screenshot, how to use dmix, how to choose languages and
diego
parents:
13511
diff
changeset
|
643 |
9675 | 644 <qandaentry> |
645 <question><para> | |
646 I have no sound when playing a video and get error messages similar to this one: | |
647 <screen> | |
21521 | 648 AO: [oss] 44100Hz 2ch Signed 16-bit (Little-Endian) |
28622 | 649 [AO OSS] audio_setup: Can't open audio device /dev/dsp: Device or resource busy |
650 Could not open/initialize audio device -> no sound. | |
651 Audio: no sound | |
652 Starting playback... | |
9675 | 653 </screen> |
654 </para></question> | |
655 <answer><para> | |
16341 | 656 Are you running KDE or GNOME with the aRts or ESD sound daemon? Try disabling |
21521 | 657 the sound daemon or use the <option>-ao arts</option> or |
658 <option>-ao esd</option> option to make <application>MPlayer</application> use | |
659 aRts or ESD. | |
14615
f1c2f7046748
Remove overly outdated entries, update a few others.
diego
parents:
14320
diff
changeset
|
660 You might also be running ALSA without OSS emulation, try loading the ALSA OSS |
f1c2f7046748
Remove overly outdated entries, update a few others.
diego
parents:
14320
diff
changeset
|
661 kernel modules or add <option>-ao alsa</option> to your command line to |
f1c2f7046748
Remove overly outdated entries, update a few others.
diego
parents:
14320
diff
changeset
|
662 directly use the ALSA audio output driver. |
9675 | 663 </para></answer> |
664 </qandaentry> | |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
665 |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
666 <qandaentry> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
667 <question><para> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
668 When starting <application>MPlayer</application> under KDE I just get a black |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
669 screen and nothing happens. After about one minute the video starts playing. |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
670 </para></question> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
671 <answer><para> |
16341 | 672 The KDE aRts sound daemon is blocking the sound device. Either wait until the |
673 video starts or disable the aRts daemon in control center. If you want to use | |
674 aRts sound, specify audio output via our native aRts audio driver | |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
675 (<option>-ao arts</option>). If it fails or isn't compiled in, try SDL |
16341 | 676 (<option>-ao sdl</option>) and make sure your SDL can handle aRts sound. Yet |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
677 another option is to start <application>MPlayer</application> with artsdsp. |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
678 </para></answer> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
679 </qandaentry> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
680 |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
681 <qandaentry> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
682 <question><para> |
21521 | 683 I have A/V sync problems. |
684 Some of my AVIs play fine, but some play with double speed! | |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
685 </para></question> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
686 <answer><para> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
687 You have a buggy sound card/driver. Most likely it's fixed at 44100Hz, and you |
16822
7fba58dee6c7
Add a few more XML tags for better semantics markup.
diego
parents:
16821
diff
changeset
|
688 try to play a file which has 22050Hz audio. Try the |
7fba58dee6c7
Add a few more XML tags for better semantics markup.
diego
parents:
16821
diff
changeset
|
689 <systemitem>resample</systemitem> audio filter. |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
690 </para></answer> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
691 </qandaentry> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
692 |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
693 <qandaentry> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
694 <question><para> |
21521 | 695 When I play this movie I get video-audio desync and/or |
696 <application>MPlayer</application> crashes with the following message: | |
697 <screen> | |
28625 | 698 Too many (945 in 8390980 bytes) video packets in the buffer! |
21521 | 699 </screen> |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
700 </para></question> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
701 <answer><para> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
702 This can have multiple reasons. |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
703 <itemizedlist> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
704 <listitem><para> |
21521 | 705 Your CPU <emphasis>and/or</emphasis> video card <emphasis>and/or</emphasis> |
706 bus is too slow. <application>MPlayer</application> displays a message if | |
707 this is the case (and the dropped frames counter goes up fast). | |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
708 </para></listitem> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
709 <listitem><para> |
21521 | 710 If it is an AVI, maybe it has bad interleaving, try the |
23574
9f2d63b24552
added some carriage returns and full stops, plus a missing 'option'
ptt
parents:
21912
diff
changeset
|
711 <option>-ni</option> option to work around this. |
21521 | 712 Or it may have a bad header, in this case <option>-nobps</option> |
713 and/or <option>-mc 0</option> can help. | |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
714 </para></listitem> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
715 <listitem><para> |
24010 | 716 Many FLV files will only play correctly with <option>-correct-pts</option>. |
24015 | 717 Unfortunately <application>MEncoder</application> does not have this option, |
718 but you can try setting <option>-fps</option> to the correct value manually | |
719 if you know it. | |
24010 | 720 </para></listitem> |
721 <listitem><para> | |
21521 | 722 Your sound driver is buggy. |
16005
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
723 </para></listitem> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
724 </itemizedlist> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
725 </para></answer> |
9f297ab810a0
Moved some entries from playback problems to video/audio driver section
diego
parents:
16004
diff
changeset
|
726 </qandaentry> |
17036 | 727 |
728 <qandaentry> | |
729 <question><para> | |
21521 | 730 How can I get rid of A/V desynchronization |
731 while seeking through RealMedia streams? | |
17036 | 732 </para></question> |
733 <answer><para> | |
17139
d5433f61d1e1
-mc 0.1 is preferrable to -mc 10 since A/V sync is recovered quicker after seeking.
diego
parents:
17036
diff
changeset
|
734 <option>-mc 0.1</option> can help. |
17036 | 735 </para></answer> |
736 </qandaentry> | |
9675 | 737 </qandadiv> |
738 | |
21521 | 739 <!-- ********** --> |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
740 |
9675 | 741 <qandadiv id="faq-dvd"> |
742 <title>DVD playback</title> | |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
743 |
9675 | 744 <qandaentry> |
745 <question><para> | |
13419
1167f25567ef
Better explain why we have no DVD menus and what to do about it (DIY).
diego
parents:
12957
diff
changeset
|
746 What about DVD navigation/menus? |
9675 | 747 </para></question> |
748 <answer><para> | |
30820 | 749 <application>MPlayer</application> should support DVD menus nowadays. |
750 Your mileage may vary. | |
9675 | 751 </para></answer> |
752 </qandaentry> | |
10373 | 753 |
9675 | 754 <qandaentry> |
755 <question><para> | |
11540 | 756 What about subtitles? Can <application>MPlayer</application> display them? |
9675 | 757 </para></question> |
758 <answer><para> | |
10373 | 759 Yes. See the <link linkend="dvd">DVD chapter</link>. |
9675 | 760 </para></answer> |
761 </qandaentry> | |
10373 | 762 |
9675 | 763 <qandaentry> |
764 <question><para> | |
765 How can I set the region code of my DVD-drive? I don't have Windows! | |
766 </para></question> | |
767 <answer><para> | |
21521 | 768 Use the |
769 <ulink url="http://linvdr.org/projects/regionset/">regionset tool</ulink>. | |
9675 | 770 </para></answer> |
771 </qandaentry> | |
10373 | 772 |
9675 | 773 <qandaentry> |
774 <question><para> | |
17424
2ffede69ea15
FAQ about problems with playing DVDs on certain drives.
rathann
parents:
17139
diff
changeset
|
775 I can't play a DVD, MPlayer hangs or outputs "Encrypted VOB file!" errors. |
2ffede69ea15
FAQ about problems with playing DVDs on certain drives.
rathann
parents:
17139
diff
changeset
|
776 </para></question> |
2ffede69ea15
FAQ about problems with playing DVDs on certain drives.
rathann
parents:
17139
diff
changeset
|
777 <answer><para> |
2ffede69ea15
FAQ about problems with playing DVDs on certain drives.
rathann
parents:
17139
diff
changeset
|
778 CSS decryption code does not work with some DVD drives unless you set |
2ffede69ea15
FAQ about problems with playing DVDs on certain drives.
rathann
parents:
17139
diff
changeset
|
779 the region code appropriately. See the answer to the previous question. |
2ffede69ea15
FAQ about problems with playing DVDs on certain drives.
rathann
parents:
17139
diff
changeset
|
780 </para></answer> |
2ffede69ea15
FAQ about problems with playing DVDs on certain drives.
rathann
parents:
17139
diff
changeset
|
781 </qandaentry> |
2ffede69ea15
FAQ about problems with playing DVDs on certain drives.
rathann
parents:
17139
diff
changeset
|
782 |
2ffede69ea15
FAQ about problems with playing DVDs on certain drives.
rathann
parents:
17139
diff
changeset
|
783 <qandaentry> |
2ffede69ea15
FAQ about problems with playing DVDs on certain drives.
rathann
parents:
17139
diff
changeset
|
784 <question><para> |
12957
f5dd97090f64
fibmap_mplayer is long obsolete, noticed by Torinthiel.
diego
parents:
12815
diff
changeset
|
785 Do I need to be (setuid) root to be able to play a DVD? |
9675 | 786 </para></question> |
787 <answer><para> | |
11598
d18111ea13d0
removing last pitiful traces of old-style DVD support, with no remorse, but
gabucino
parents:
11540
diff
changeset
|
788 No. However you must have the proper rights |
9675 | 789 on the DVD device entry (in <filename class="directory">/dev/</filename>). |
790 </para></answer> | |
791 </qandaentry> | |
10373 | 792 |
9675 | 793 <qandaentry> |
794 <question><para> | |
795 Is it possible to play/encode only selected chapters? | |
796 </para></question> | |
797 <answer><para> | |
798 Yes, try the <option>-chapter</option> option. | |
799 </para></answer> | |
800 </qandaentry> | |
10373 | 801 |
9675 | 802 <qandaentry> |
803 <question><para> | |
804 My DVD playback is sluggish! | |
805 </para></question> | |
806 <answer><para> | |
807 Use the <option>-cache</option> option (described in the man page) and try | |
31750
d590a8d2386a
Remove subsection that describes how to tweak CD/DVD drives.
diego
parents:
31349
diff
changeset
|
808 enabling DMA for the DVD drive with the <command>hdparm</command> tool. |
9675 | 809 </para></answer> |
810 </qandaentry> | |
13511 | 811 |
812 <qandaentry> | |
813 <question><para> | |
814 I copied a DVD using vobcopy. How do I play/encode it from my hard disk? | |
815 </para></question> | |
816 <answer><para> | |
817 Use the <option>-dvd-device</option> option to refer to the directory | |
818 that contains the files: | |
819 <screen> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
820 mplayer dvd://1 -dvd-device <replaceable>/path/to/directory</replaceable> |
13511 | 821 </screen> |
822 </para></answer> | |
823 </qandaentry> | |
9675 | 824 </qandadiv> |
825 | |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
826 |
9675 | 827 <qandadiv id="faq-features"> |
828 <title>Feature requests</title> | |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
829 |
9675 | 830 <qandaentry> |
831 <question><para> | |
21521 | 832 If <application>MPlayer</application> is paused and I try to seek or press any |
833 key at all, <application>MPlayer</application> ceases to be paused. | |
834 I would like to be able to seek in the paused movie. | |
9675 | 835 </para></question> |
836 <answer><para> | |
837 This is very tricky to implement without losing A/V synchronization. | |
838 All attempts have failed so far, but patches are welcome. | |
839 </para></answer> | |
840 </qandaentry> | |
10373 | 841 |
9675 | 842 <qandaentry> |
843 <question><para> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
844 I'd like to seek +/- 1 frame instead of 10 seconds. |
9675 | 845 </para></question> |
846 <answer><para> | |
14312 | 847 You can step forward one frame by pressing <keycap>.</keycap>. |
14320 | 848 If the movie was not paused it will be paused afterwards |
849 (see the man page for details). | |
14309 | 850 Stepping backwards is unlikely to be implemented anytime soon. |
9675 | 851 </para></answer> |
852 </qandaentry> | |
853 </qandadiv> | |
854 | |
21521 | 855 <!-- ********** --> |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
856 |
9675 | 857 <qandadiv id="faq-encoding"> |
858 <title>Encoding</title> | |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
859 |
9675 | 860 <qandaentry> |
861 <question><para> | |
10042 | 862 How can I encode? |
863 </para></question> | |
864 <answer><para> | |
11540 | 865 Read the <link linkend="mencoder"><application>MEncoder</application></link> |
866 section. | |
10042 | 867 </para></answer> |
868 </qandaentry> | |
10373 | 869 |
10042 | 870 <qandaentry> |
871 <question><para> | |
15493 | 872 How can I dump a full DVD title into a file? |
15430 | 873 </para></question> |
874 <answer><para> | |
15493 | 875 Once you have selected your title, and made sure it plays fine with |
876 <application>MPlayer</application>, use the option <option>-dumpstream</option>. | |
15430 | 877 For example: |
878 <screen> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
879 mplayer dvd://5 -dumpstream -dumpfile <replaceable>dvd_dump.vob</replaceable> |
15430 | 880 </screen> |
881 will dump the 5th title of the DVD into the file | |
882 <replaceable>dvd_dump.vob</replaceable> | |
883 </para></answer> | |
884 </qandaentry> | |
885 | |
886 <qandaentry> | |
887 <question><para> | |
15830 | 888 How can I create (S)VCDs automatically? |
10042 | 889 </para></question> |
890 <answer><para> | |
27198
305dc504c407
Give all shell scripts a .sh suffix for consistency.
diego
parents:
26958
diff
changeset
|
891 Try the <filename>mencvcd.sh</filename> script from the |
21521 | 892 <filename class="directory">TOOLS</filename> subdirectory. |
893 With it you can encode DVDs or other movies to VCD or SVCD format | |
10042 | 894 and even burn them directly to CD. |
895 </para></answer> | |
896 </qandaentry> | |
10373 | 897 |
10042 | 898 <qandaentry> |
899 <question><para> | |
15836 | 900 How can I create (S)VCDs? |
15830 | 901 </para></question> |
902 <answer><para> | |
903 Newer versions of <application>MEncoder</application> can directly | |
15836 | 904 generate MPEG-2 files that can be used as a base to create a VCD or SVCD and |
905 are likely to be playable out of the box on all platforms (for example, | |
15830 | 906 to share a video from a digital camcorder with your computer-illiterate |
907 friends). | |
15981
c20bd4b50521
Remove rencently added FAQ entry because we now have a much better and detailed doc elsewhere.
gpoirier
parents:
15942
diff
changeset
|
908 Please read |
c20bd4b50521
Remove rencently added FAQ entry because we now have a much better and detailed doc elsewhere.
gpoirier
parents:
15942
diff
changeset
|
909 <link linkend="menc-feat-vcd-dvd">Using MEncoder to create VCD/SVCD/DVD-compliant files</link> |
c20bd4b50521
Remove rencently added FAQ entry because we now have a much better and detailed doc elsewhere.
gpoirier
parents:
15942
diff
changeset
|
910 for more details. |
15830 | 911 </para></answer> |
912 </qandaentry> | |
913 | |
914 <qandaentry> | |
915 <question><para> | |
10042 | 916 How can I join two video files? |
917 </para></question> | |
918 <answer><para> | |
14975 | 919 MPEG files can be concatenated into a single file with luck. |
920 For AVI files, you can use <application>MEncoder</application>'s | |
921 multiple file support like this: | |
922 <screen> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
923 mencoder -ovc copy -oac copy -o <replaceable>out.avi</replaceable> <replaceable>file1.avi</replaceable> <replaceable>file2.avi</replaceable> |
14975 | 924 </screen> |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
925 This will only work if the files are of the same resolution |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
926 and use the same codec. |
14975 | 927 You can also try |
10042 | 928 <ulink url="http://fixounet.free.fr/avidemux/">avidemux</ulink> and |
929 <application>avimerge</application> (part of the | |
14975 | 930 <ulink url="http://www.transcoding.org/">transcode</ulink> |
931 tool set). | |
10042 | 932 </para></answer> |
933 </qandaentry> | |
10373 | 934 |
10042 | 935 <qandaentry> |
936 <question><para> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
937 How can I fix AVI files with a broken index or bad interleaving? |
15112
4433dd310657
Move here the entry "How can I fix an AVIs with broken index or interleaving?"
gpoirier
parents:
15029
diff
changeset
|
938 </para></question> |
4433dd310657
Move here the entry "How can I fix an AVIs with broken index or interleaving?"
gpoirier
parents:
15029
diff
changeset
|
939 <answer><para> |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
940 To avoid having to use <option>-idx</option> to be able to seek in |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
941 AVI files with a broken index or <option>-ni</option> to play AVI |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
942 files with bad interleaving, use the command |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
943 <screen> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
944 mencoder <replaceable>input.avi</replaceable> -idx -ovc copy -oac copy -o <replaceable>output.avi</replaceable> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
945 </screen> |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
946 to copy the video and audio streams into a new AVI file while |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
947 regenerating the index and correctly interleaving the data. |
15112
4433dd310657
Move here the entry "How can I fix an AVIs with broken index or interleaving?"
gpoirier
parents:
15029
diff
changeset
|
948 Of course this cannot fix possible bugs in the video and/or audio streams. |
4433dd310657
Move here the entry "How can I fix an AVIs with broken index or interleaving?"
gpoirier
parents:
15029
diff
changeset
|
949 </para></answer> |
4433dd310657
Move here the entry "How can I fix an AVIs with broken index or interleaving?"
gpoirier
parents:
15029
diff
changeset
|
950 </qandaentry> |
4433dd310657
Move here the entry "How can I fix an AVIs with broken index or interleaving?"
gpoirier
parents:
15029
diff
changeset
|
951 |
4433dd310657
Move here the entry "How can I fix an AVIs with broken index or interleaving?"
gpoirier
parents:
15029
diff
changeset
|
952 <qandaentry> |
4433dd310657
Move here the entry "How can I fix an AVIs with broken index or interleaving?"
gpoirier
parents:
15029
diff
changeset
|
953 <question><para> |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
954 How can I fix the aspect ratio of an AVI file? |
15253
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
955 </para></question> |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
956 <answer><para> |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
957 You can do such a thing thanks to <application>MEncoder</application>'s |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
958 <option>-force-avi-aspect</option> option, which overrides the aspect |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
959 stored in the AVI OpenDML vprp header option. For example: |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
960 <screen> |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
961 mencoder <replaceable>input.avi</replaceable> -ovc copy -oac copy -o <replaceable>output.avi</replaceable> -force-avi-aspect 4/3 |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
962 </screen> |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
963 </para></answer> |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
964 </qandaentry> |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
965 |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
966 <qandaentry> |
da146d62612b
explains how to fix the aspect ratio of an AVI file
gpoirier
parents:
15130
diff
changeset
|
967 <question><para> |
19498 | 968 How can I backup and encode a VOB file with a broken beginning? |
969 </para></question> | |
970 <answer><para> | |
971 The main problem when you want to encode a VOB file which is corrupted | |
972 <footnote id='fn-corrupted-files-or-copy-protection'><para> | |
973 To some extent, some forms of copy protection used in DVDs can be | |
974 assumed to be content corruption. | |
975 </para></footnote> | |
976 is that it will be hard to get an encode with perfect A/V sync. | |
977 One workaround is to just shave off the corrupted part and encode just the | |
978 clean part. | |
979 First you need to find where the clean part starts: | |
980 <screen> | |
981 mplayer <replaceable>input.vob</replaceable> -sb <replaceable>nb_of_bytes_to_skip</replaceable> | |
982 </screen> | |
983 Then you can create a new file which contains just the clean part: | |
984 <screen> | |
985 dd if=<replaceable>input.vob</replaceable> of=<replaceable>output_cut.vob</replaceable> skip=1 ibs=<replaceable>nb_of_bytes_to_skip</replaceable> | |
986 </screen> | |
987 </para></answer> | |
988 </qandaentry> | |
989 | |
990 <qandaentry> | |
991 <question><para> | |
9675 | 992 I can't encode DVD subtitles into the AVI! |
993 </para></question> | |
994 <answer><para> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
995 You have to properly specify the <option>-sid</option> option. |
9675 | 996 </para></answer> |
997 </qandaentry> | |
10373 | 998 |
9675 | 999 <qandaentry> |
1000 <question><para> | |
1001 How can I encode only selected chapters from a DVD? | |
1002 </para></question> | |
1003 <answer><para> | |
21521 | 1004 Use the <option>-chapter</option> option correctly, |
1005 like: <option>-chapter 5-7</option>. | |
9675 | 1006 </para></answer> |
1007 </qandaentry> | |
10373 | 1008 |
9675 | 1009 <qandaentry> |
1010 <question><para> | |
1011 I'm trying to work with 2GB+ files on a VFAT file system. Does it work? | |
1012 </para></question> | |
1013 <answer><para> | |
1014 No, VFAT doesn't support 2GB+ files. | |
1015 </para></answer> | |
1016 </qandaentry> | |
10373 | 1017 |
9675 | 1018 <qandaentry> |
1019 <question><para> | |
21521 | 1020 What is the meaning of the numbers on the status line |
1021 during the encoding process? | |
20298
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1022 </para></question> |
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1023 <answer><para> |
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1024 Example: |
21521 | 1025 <screen> |
1026 Pos: 264.5s 6612f ( 2%) 7.12fps Trem: 576min 2856mb A-V:0.065 [2126:192] | |
1027 </screen> | |
20298
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1028 <variablelist> |
21521 | 1029 <varlistentry> |
1030 <term><systemitem>Pos: 264.5s</systemitem></term> | |
1031 <listitem><para>time position in the encoded stream</para></listitem> | |
20298
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1032 </varlistentry> |
21521 | 1033 <varlistentry> |
1034 <term><systemitem>6612f</systemitem></term> | |
1035 <listitem><para>number of video frames encoded</para></listitem> | |
20298
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1036 </varlistentry> |
21521 | 1037 <varlistentry> |
1038 <term><systemitem>( 2%)</systemitem></term> | |
1039 <listitem><para>portion of the input stream encoded</para></listitem> | |
20298
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1040 </varlistentry> |
21521 | 1041 <varlistentry> |
1042 <term><systemitem>7.12fps</systemitem></term> | |
1043 <listitem><para>encoding speed</para></listitem> | |
20298
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1044 </varlistentry> |
21521 | 1045 <varlistentry> |
1046 <term><systemitem>Trem: 576min</systemitem></term> | |
1047 <listitem><para>estimated remaining encoding time</para></listitem> | |
20298
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1048 </varlistentry> |
21521 | 1049 <varlistentry> |
1050 <term><systemitem>2856mb</systemitem></term> | |
1051 <listitem><para>estimated size of the final encode</para></listitem> | |
20298
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1052 </varlistentry> |
21521 | 1053 <varlistentry> |
1054 <term><systemitem>A-V:0.065</systemitem></term> | |
1055 <listitem><para>current delay between audio and video streams</para></listitem> | |
20298
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1056 </varlistentry> |
21521 | 1057 <varlistentry> |
1058 <term><systemitem>[2126:192]</systemitem></term> | |
1059 <listitem><para> | |
1060 average video bitrate (in kb/s) and average audio bitrate (in kb/s) | |
1061 </para></listitem> | |
20298
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1062 </varlistentry> |
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1063 </variablelist> |
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1064 </para></answer> |
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1065 </qandaentry> |
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1066 |
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1067 <qandaentry> |
3c469a2030e7
What is the meaning of the numbers on the status line during the encoding process?
gpoirier
parents:
19822
diff
changeset
|
1068 <question><para> |
21521 | 1069 Why is the recommended bitrate printed by <application>MEncoder</application> |
1070 negative? | |
9675 | 1071 </para></question> |
1072 <answer><para> | |
1073 Because the bitrate you encoded the audio with is too large to fit the | |
1074 movie on any CD. Check if you have libmp3lame installed properly. | |
1075 </para></answer> | |
1076 </qandaentry> | |
10448 | 1077 |
1078 <qandaentry> | |
1079 <question><para> | |
14024 | 1080 I can't encode an ASF file to AVI/MPEG-4 (DivX) because it uses 1000 fps. |
10448 | 1081 </para></question> |
1082 <answer><para> | |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
1083 Since ASF uses variable framerate but AVI uses a fixed one, you |
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
1084 have to set it by hand with the <option>-ofps</option> option. |
10448 | 1085 </para></answer> |
1086 </qandaentry> | |
1087 | |
10631 | 1088 <qandaentry> |
1089 <question><para> | |
1090 How can I put subtitles in the output file? | |
1091 </para></question> | |
1092 <answer><para> | |
1093 Just pass the <option>-sub <filename></option> (or <option>-sid</option>, | |
12815 | 1094 respectively) option to <application>MEncoder</application>. |
10631 | 1095 </para></answer> |
1096 </qandaentry> | |
1097 | |
14060
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1098 <qandaentry> |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1099 <question><para> |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1100 How do I encode only sound from a music video? |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1101 </para></question> |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1102 <answer><para> |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1103 It's not possible directly, but you can try this (note the |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1104 <emphasis role="bold">&</emphasis> at the end of |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1105 <command>mplayer</command> command): |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1106 <screen> |
21521 | 1107 mkfifo <replaceable>encode</replaceable> |
1108 mplayer -ao pcm -aofile <replaceable>encode</replaceable> dvd://1 & | |
1109 lame <replaceable>your_opts</replaceable> <replaceable>encode</replaceable> <replaceable>music.mp3</replaceable> | |
1110 rm <replaceable>encode</replaceable> | |
14060
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1111 </screen> |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1112 This allows you to use any encoder, not only <application>LAME</application>, |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1113 just replace <command>lame</command> with your favorite audio encoder in the |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1114 above command. |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1115 </para></answer> |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1116 </qandaentry> |
9f7c1022627b
FAQ about audio-only encoding (approved by Diego)
rathann
parents:
14024
diff
changeset
|
1117 |
15921
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1118 <qandaentry> |
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1119 <question><para> |
15925 | 1120 Why do third-party players fail to play MPEG-4 movies encoded by |
1121 <application>MEncoder</application> versions later than 1.0pre7? | |
15921
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1122 </para></question> |
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1123 <answer><para> |
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1124 <systemitem class="library">libavcodec</systemitem>, the native MPEG-4 |
15922 | 1125 encoding library usually shipped with <application>MEncoder</application>, |
1126 used to set the FourCC to 'DIVX' when encoding MPEG-4 videos | |
1127 (the FourCC is an AVI tag to identify the software used to encode and | |
1128 the intended software to use for decoding the video). | |
1129 This led many people to think that | |
1130 <systemitem class="library">libavcodec</systemitem> | |
1131 was a DivX encoding library, when in fact it is a completely different | |
15925 | 1132 MPEG-4 encoding library which implements the MPEG-4 standard much |
15942 | 1133 better than DivX does. |
15921
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1134 Therefore, the new default FourCC used by |
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1135 <systemitem class="library">libavcodec</systemitem> is 'FMP4', but you |
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1136 may override this behavior using <application>MEncoder</application>'s |
15922 | 1137 <option>-ffourcc</option> option. |
15925 | 1138 You may also change the FourCC of existing files in the same way: |
15921
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1139 <screen> |
21521 | 1140 mencoder <replaceable>input.avi</replaceable> -o <replaceable>output.avi</replaceable> -ffourcc XVID |
15921
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1141 </screen> |
16004
3bed758b6eae
Big cleanup all over the place; wording/grammar/typo fixes as usual, many
diego
parents:
15981
diff
changeset
|
1142 Note that this will set the FourCC to XVID rather than DIVX. |
15922 | 1143 This is recommended as DIVX FourCC means DivX4, which is a very basic |
1144 MPEG-4 codec, whereas DX50 and XVID both mean full MPEG-4 (ASP). | |
1145 Therefore, if you change the FourCC to DIVX, some bad software or | |
1146 hardware players may choke on some advanced features that | |
1147 <systemitem class="library">libavcodec</systemitem> supports, but DivX | |
20860 | 1148 doesn't; on the other hand <systemitem class="library">Xvid</systemitem> |
15925 | 1149 is closer to <systemitem class="library">libavcodec</systemitem> in |
1150 terms of functionality, and is supported by all decent players. | |
15921
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1151 </para></answer> |
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1152 </qandaentry> |
c821dbc2c21b
New FAQ entry: Explain why libavcodec now sets FMP4 FourCC, and how to enventualy change it.
gpoirier
parents:
15901
diff
changeset
|
1153 |
16658
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1154 <qandaentry> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1155 <question><para> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1156 How can I encode an audio only file? |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1157 </para></question> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1158 <answer><para> |
27198
305dc504c407
Give all shell scripts a .sh suffix for consistency.
diego
parents:
26958
diff
changeset
|
1159 Use <filename>aconvert.sh</filename> from the |
16658
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1160 <filename class="directory">TOOLS</filename> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1161 subdirectory in the MPlayer source tree. |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1162 </para></answer> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1163 </qandaentry> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1164 |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1165 <qandaentry> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1166 <question><para> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1167 How can I play subtitles embedded in AVI? |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1168 </para></question> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1169 <answer><para> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1170 Use <filename>avisubdump.c</filename> from the |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1171 <filename class="directory">TOOLS</filename> subdirectory or read |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1172 <ulink url="http://xlife.zuavra.net/curse/0012/">this document about extracting/demultiplexing subtitles embedded in OpenDML AVI files</ulink>. |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1173 </para></answer> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1174 </qandaentry> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1175 |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1176 <qandaentry> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1177 <question><para> |
28496
147df13f0d46
Replace a mention of MPlayer by MEncoder in the MEncoder section.
diego
parents:
28495
diff
changeset
|
1178 MEncoder won't... |
16658
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1179 </para></question> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1180 <answer><para> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1181 Have a look at the <filename class="directory">TOOLS</filename> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1182 subdirectory for a collection of random scripts and hacks. |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1183 <filename>TOOLS/README</filename> contains documentation. |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1184 </para></answer> |
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1185 </qandaentry> |
20642
d2bca7bc01b8
(cosmetics) Unify and clarify blank lines usage
torinthiel
parents:
20641
diff
changeset
|
1186 </qandadiv> |
16658
b733dccdc4c2
MEncoder FAQs as suggested by Compn < tempn - a - twmi - d - rr - d - com >
diego
parents:
16562
diff
changeset
|
1187 |
9675 | 1188 </qandaset> |
1189 | |
15835 | 1190 </chapter> |