mirror of
https://github.com/mpv-player/mpv
synced 2024-12-19 21:31:52 +00:00
69d062ce37
With the recent changes to the script it does not incur a startup delay by default due to starting youtube-dl and waiting for it. This was the main reason for making libmpv have a different default. Starting sub processes from a library can still be a bit fishy, but I think it's ok. Still mention it in the libmpv header. There were already other cases where libmpv would start its own processes, such as the X11 backend calling xdg-screensaver. (The reason why this is fishy is because UNIX process management sucks: SIGCHLD and the wait() syscall make sub processes non-transparent and could potentially introduce conflicts with code trying to use them.)
49 lines
846 B
Plaintext
49 lines
846 B
Plaintext
# This file is baked into the mpv binary at compile time, and automatically
|
|
# loaded at early initialization time. Some of the profiles are automatically
|
|
# applied at later stages during loading.
|
|
|
|
[pseudo-gui]
|
|
player-operation-mode=pseudo-gui
|
|
|
|
[builtin-pseudo-gui]
|
|
terminal=no
|
|
force-window=yes
|
|
idle=once
|
|
screenshot-directory=~~desktop/
|
|
|
|
[libmpv]
|
|
config=no
|
|
idle=yes
|
|
terminal=no
|
|
input-terminal=no
|
|
osc=no
|
|
input-default-bindings=no
|
|
input-vo-keyboard=no
|
|
# OSX/Cocoa global input hooks
|
|
input-appleremote=no
|
|
input-media-keys=no
|
|
|
|
[encoding]
|
|
vo=lavc
|
|
ao=lavc
|
|
keep-open=no
|
|
force-window=no
|
|
gapless-audio=yes
|
|
resume-playback=no
|
|
load-scripts=no
|
|
osc=no
|
|
framedrop=no
|
|
|
|
[gpu-hq]
|
|
scale=spline36
|
|
cscale=spline36
|
|
dscale=mitchell
|
|
dither-depth=auto
|
|
correct-downscaling=yes
|
|
sigmoid-upscaling=yes
|
|
deband=yes
|
|
|
|
# Compatibility alias (deprecated)
|
|
[opengl-hq]
|
|
profile=gpu-hq
|