summaryrefslogtreecommitdiffstats
path: root/DOCS/man/mpv.rst
diff options
context:
space:
mode:
authorllyyr <llyyr.public@gmail.com>2024-02-16 23:01:50 +0530
committersfan5 <sfan5@live.de>2024-02-20 23:11:39 +0100
commit362959ace3b0843f3977e97e918ceaa80b71b176 (patch)
treee3ad4bc8a3019115ecf5ddcee12b32ef4ce3d645 /DOCS/man/mpv.rst
parentf9197e07eeaffc1baa00141dce324d3a4aafd254 (diff)
downloadmpv-362959ace3b0843f3977e97e918ceaa80b71b176.tar.bz2
mpv-362959ace3b0843f3977e97e918ceaa80b71b176.tar.xz
DOCS/mpv: update ancient profiles config example
Hopefully actually useful now. Also updates big-cache to not be smaller than the current default.
Diffstat (limited to 'DOCS/man/mpv.rst')
-rw-r--r--DOCS/man/mpv.rst24
1 files changed, 13 insertions, 11 deletions
diff --git a/DOCS/man/mpv.rst b/DOCS/man/mpv.rst
index 570d81535d..0c065e5207 100644
--- a/DOCS/man/mpv.rst
+++ b/DOCS/man/mpv.rst
@@ -711,22 +711,24 @@ or at runtime with the ``apply-profile <name>`` command.
# a profile that can be enabled with --profile=big-cache
[big-cache]
cache=yes
- demuxer-max-bytes=123400KiB
+ demuxer-max-bytes=512MiB
demuxer-readahead-secs=20
- [slow]
- profile-desc="some profile name"
- # reference a builtin profile
- profile=high-quality
+ [network]
+ profile-desc="profile for content over network"
+ force-window=immediate
+ # you can also include other profiles
+ profile=big-cache
- [fast]
- vo=vdpau
+ [reduce-judder]
+ video-sync=display-resample
+ interpolation=yes
# using a profile again extends it
- [slow]
- framedrop=no
- # you can also include other profiles
- profile=big-cache
+ [network]
+ demuxer-max-back-bytes=512MiB
+ # reference a builtin profile
+ profile=fast
Runtime profiles
----------------