1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-05 06:30:06 +00:00

Clarify playtree explanation.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25146 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-11-23 12:01:13 +00:00
parent 958c41d9b6
commit 5de794723e

View File

@ -7,14 +7,15 @@
<title>Command line</title> <title>Command line</title>
<para> <para>
<application>MPlayer</application> utilizes a complex playtree. It consists <application>MPlayer</application> utilizes a complex playtree. Options passed
of global options written as first, for example on the command line can apply to all files/URLs or just to specific ones
<screen>mplayer -vfm 5</screen> depending on their position. For example
and options written after filenames, that apply only to the given <screen>mplayer -vfm ffmpeg movie1.avi movie2.avi</screen>
filename/URL/whatever, for example: will use FFmpeg decoders for both files, but
<screen> <screen>
mplayer -vfm 5 <replaceable>movie1.avi</replaceable> <replaceable>movie2.avi</replaceable> -vfm 4 mplayer -vfm ffmpeg <replaceable>movie1.avi</replaceable> <replaceable>movie2.avi</replaceable> -vfm dmo
</screen> </screen>
will play the second file with a DMO decoder.
</para> </para>
<para> <para>