Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 587caf0

Browse files
author
nadeko
committed
CI autodeploy
1 parent db82584 commit 587caf0

File tree

1 file changed

+33
-7
lines changed

1 file changed

+33
-7
lines changed

‎manual/master/index.html

Lines changed: 33 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,10 @@ <h2>Keyboard Control</h2>
226226
<dd>Show the playlist and the current position in it.</dd>
227227
<dt>F9</dt>
228228
<dd>Show the list of audio and subtitle streams.</dd>
229+
<dt>Ctrl+v</dt>
230+
<dd>Append the file or URL in the clipboard to the playlist. If nothing is
231+
currently playing, it is played immediately. Only works on platforms that
232+
support the <tt class="docutils literal">clipboard</tt> property.</dd>
229233
<dt>i and I</dt>
230234
<dd>Show/toggle an overlay displaying statistics about the currently playing
231235
file such as codec, framerate, number of dropped frames and so on. See
@@ -5411,9 +5415,10 @@ <h2>Demuxer</h2>
54115415
<dd>When opening a directory, open subdirectories lazily, recursively or not at
54125416
all. The default is <tt class="docutils literal">auto</tt>, which behaves like <tt class="docutils literal">recursive</tt> with
54135417
<tt class="docutils literal"><span class="pre">--shuffle</span></tt>, and like <tt class="docutils literal">lazy</tt> otherwise.</dd>
5414-
<dt><tt class="docutils literal"><span class="pre">--directory-filter-types=&lt;video,audio,image&gt;</span></tt></dt>
5418+
<dt><tt class="docutils literal"><span class="pre">--directory-filter-types=&lt;video,audio,image,archive,playlist&gt;</span></tt></dt>
54155419
<dd><p class="first">Media file types to filter when opening directory. If the list is empty,
5416-
all files are added to the playlist. (Default: <tt class="docutils literal">video,audio,image</tt>)</p>
5420+
all files are added to the playlist. (Default:
5421+
<tt class="docutils literal">video,audio,image,archive,playlist</tt>)</p>
54175422
<p class="last">This is a string list option. See <a class="reference internal" href="#list-options">List Options</a> for details.</p>
54185423
</dd>
54195424
<dt><tt class="docutils literal"><span class="pre">--autocreate-playlist=&lt;no|filter|same&gt;</span></tt></dt>
@@ -8765,6 +8770,18 @@ <h2>Miscellaneous</h2>
87658770
<p class="last">This is a string list option. See <a class="reference internal" href="#list-options">List Options</a> for details.
87668771
Use <tt class="docutils literal"><span class="pre">--help=video-exts</span></tt> to see default extensions.</p>
87678772
</dd>
8773+
<dt><tt class="docutils literal"><span class="pre">--archive-exts=ext1,ext2,...</span></tt></dt>
8774+
<dd><p class="first">Archive file extentions to try to match when using <tt class="docutils literal"><span class="pre">--autocreate-playlist</span></tt>
8775+
or <tt class="docutils literal"><span class="pre">--directory-filter-types</span></tt>.</p>
8776+
<p class="last">This is a string list option. See <a class="reference internal" href="#list-options">List Options</a> for details. Use
8777+
<tt class="docutils literal"><span class="pre">--help=archive-exts</span></tt> to see the default extensions.</p>
8778+
</dd>
8779+
<dt><tt class="docutils literal"><span class="pre">--playlist-exts=ext1,ext2,...</span></tt></dt>
8780+
<dd><p class="first">Playlist file extentions to try to match when using
8781+
<tt class="docutils literal"><span class="pre">--autocreate-playlist</span></tt> or <tt class="docutils literal"><span class="pre">--directory-filter-types</span></tt>.</p>
8782+
<p class="last">This is a string list option. See <a class="reference internal" href="#list-options">List Options</a> for details. Use
8783+
<tt class="docutils literal"><span class="pre">--help=playlist-exts</span></tt> to see the default extensions.</p>
8784+
</dd>
87688785
<dt><tt class="docutils literal"><span class="pre">--autoload-files=&lt;yes|no&gt;</span></tt></dt>
87698786
<dd><p class="first">Automatically load/select external files (default: yes).</p>
87708787
<p>If set to <tt class="docutils literal">no</tt>, then do not automatically load external files as specified
@@ -9449,16 +9466,25 @@ <h1>VIDEO OUTPUT DRIVERS</h1>
94499466
</dl>
94509467
</dd>
94519468
<dt><tt class="docutils literal"><span class="pre">dmabuf-wayland</span></tt></dt>
9452-
<dd>Experimental Wayland output driver designed for use with either drm stateless
9469+
<dd><p class="first">Experimental Wayland output driver designed for use with either drm stateless
94539470
or VA API hardware decoding. The driver is designed to avoid any GPU to CPU copies,
94549471
and to perform scaling and color space conversion using fixed-function hardware,
94559472
if available, rather than GPU shaders. This frees up GPU resources for other tasks.
94569473
It is highly recommended to use this VO with the appropriate <tt class="docutils literal"><span class="pre">--hwdec</span></tt> option such
94579474
as <tt class="docutils literal"><span class="pre">auto-safe</span></tt>. It can still work in some circumstances without <tt class="docutils literal"><span class="pre">--hwdec</span></tt> due to
94589475
mpv's internal conversion filters, but this is not recommended as it's a needless
94599476
extra step. Correct output depends on support from your GPU, drivers, and compositor.
9460-
Weston and wlroots-based compositors like Sway and Intel GPUs are known to generally
9461-
work.</dd>
9477+
This requires the compositor and mpv to support <tt class="docutils literal"><span class="pre">xx-color-management-v4</span></tt> to
9478+
accurately display colorspaces that are different from the compositor
9479+
default (bt.601 in most cases).</p>
9480+
<div class="admonition warning last">
9481+
<p class="first admonition-title">Warning</p>
9482+
<p class="last">This driver is not required for mpv to work on Wayland. <tt class="docutils literal">vo=gpu</tt>
9483+
and <tt class="docutils literal"><span class="pre">vo=gpu-next</span></tt> will switch to the appropriate Wayland context
9484+
automatically. This driver is experimental and generally lower quality
9485+
than <tt class="docutils literal">gpu</tt>/<tt class="docutils literal"><span class="pre">gpu-next</span></tt>.</p>
9486+
</div>
9487+
</dd>
94629488
<dt><tt class="docutils literal">vaapi</tt></dt>
94639489
<dd><p class="first">Intel VA API video output driver with support for hardware decoding. Note
94649490
that there is absolutely no reason to use this, other than compatibility.
@@ -15087,11 +15113,11 @@ <h3>Configurable Options</h3>
1508715113
</dd>
1508815114
<dt><tt class="docutils literal">valign</tt></dt>
1508915115
<dd><p class="first">Default: 0.8</p>
15090-
<p class="last">Vertical alignment, -1 (top) to 1 (bottom)</p>
15116+
<p class="last">Vertical alignment in box and slimbox layouts, -1 (top) to 1 (bottom).</p>
1509115117
</dd>
1509215118
<dt><tt class="docutils literal">halign</tt></dt>
1509315119
<dd><p class="first">Default: 0.0</p>
15094-
<p class="last">Horizontal alignment, -1 (left) to 1 (right)</p>
15120+
<p class="last">Horizontal alignment in box and slimbox layouts, -1 (left) to 1 (right).</p>
1509515121
</dd>
1509615122
<dt><tt class="docutils literal">barmargin</tt></dt>
1509715123
<dd><p class="first">Default: 0</p>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /