diff options
| author | Anton Bobov <anton@bobov.name> | 2025-01-12 17:08:46 +0500 |
|---|---|---|
| committer | Anton Bobov <anton@bobov.name> | 2025-01-12 17:08:46 +0500 |
| commit | 4b2a10959af6229122a5a42a8ecc079ed1d9aaea (patch) | |
| tree | 29b5c2636f46a6e21e3f8c6e7d6e1b54620433a8 | |
| parent | 4a91001759d6b46f97b2d66001837d7fdadbbaeb (diff) | |
mpv: Add thumbfast config file
| -rw-r--r-- | files/.config/mpv/script-opts/thumbfast.conf | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/files/.config/mpv/script-opts/thumbfast.conf b/files/.config/mpv/script-opts/thumbfast.conf new file mode 100644 index 0000000..8e1a62e --- /dev/null +++ b/files/.config/mpv/script-opts/thumbfast.conf @@ -0,0 +1,41 @@ +# Socket path (leave empty for auto) +socket= + +# Thumbnail path (leave empty for auto) +thumbnail= + +# Maximum thumbnail generation size in pixels (scaled down to fit) +# Values are scaled when hidpi is enabled +max_height=300 +max_width=300 + +# Scale factor for thumbnail display size (requires mpv 0.38+) +# Note that this is lower quality than increasing max_height and max_width +scale_factor=1 + +# Apply tone-mapping, no to disable +tone_mapping=auto + +# Overlay id +overlay_id=42 + +# Spawn thumbnailer on file load for faster initial thumbnails +spawn_first=no + +# Close thumbnailer process after an inactivity period in seconds, 0 to disable +quit_after_inactivity=0 + +# Enable on network playback +network=no + +# Enable on audio playback +audio=no + +# Enable hardware decoding +hwdec=no + +# Windows only: use native Windows API to write to pipe (requires LuaJIT) +direct_io=no + +# Custom path to the mpv executable +mpv_path=mpv |
