Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/next/external/packages/bsp/rk356x/etc/mpv/mpv.conf
Views: 3963
#1# mpv configuration file2#3# Warning:4#5# The commented example options usually do _not_ set the default values. Call6# mpv with --list-options to see the default values for most options. There is7# no builtin or example mpv.conf with all the defaults.8#9#10# Configuration files are read system-wide from /usr/local/etc/mpv.conf11# and per-user from ~/.config/mpv/mpv.conf, where per-user settings override12# system-wide settings, all of which are overridden by the command line.13#14# Configuration file settings and the command line options use the same15# underlying mechanisms. Most options can be put into the configuration file16# by dropping the preceding '--'. See the man page for a complete list of17# options.18#19# Lines starting with '#' are comments and are ignored.20#21# See the CONFIGURATION FILES section in the man page22# for a detailed description of the syntax.23#24# Profiles should be placed at the bottom of the configuration file to ensure25# that settings wanted as defaults are not restricted to specific profiles.2627##################28# video settings #29##################3031# Start in fullscreen mode by default.32#fs=yes3334# force starting with centered window35#geometry=50%:50%3637# don't allow a new window to have a size larger than 90% of the screen size38#autofit-larger=90%x90%3940# Do not close the window on exit.41#keep-open=yes4243# Do not wait with showing the video window until it has loaded. (This will44# resize the window once video is loaded. Also always shows a window with45# audio.)46#force-window=immediate4748# Disable the On Screen Controller (OSC).49#osc=no5051# Keep the player window on top of all other windows.52#ontop=yes5354# Specify high quality video rendering preset (for --vo=gpu only)55# Can cause performance problems with some drivers and GPUs.56#profile=gpu-hq5758# Force video to lock on the display's refresh rate, and change video and audio59# speed to some degree to ensure synchronous playback - can cause problems60# with some drivers and desktop environments.61#video-sync=display-resample6263# Enable hardware decoding if available. Often, this does not work with all64# video outputs, but should work well with default settings on most systems.65# If performance or energy usage is an issue, forcing the vdpau or vaapi VOs66# may or may not help.67hwdec=rkmpp6869# Specify default video output.70vo=xv7172##################73# audio settings #74##################7576# Specify default audio device. You can list devices with: --audio-device=help77# The option takes the device string (the stuff between the '...').78#audio-device=alsa/default7980# Do not filter audio to keep pitch when changing playback speed.81#audio-pitch-correction=no8283# Output 5.1 audio natively, and upmix/downmix audio with a different format.84#audio-channels=5.185# Disable any automatic remix, _if_ the audio output accepts the audio format.86# of the currently played file. See caveats mentioned in the manpage.87# (The default is "auto-safe", see manpage.)88#audio-channels=auto8990##################91# other settings #92##################9394# Pretend to be a web browser. Might fix playback with some streaming sites,95# but also will break with shoutcast streams.96#user-agent="Mozilla/5.0"9798# cache settings99#100# Use 150MB input cache by default. The cache is enabled for network streams only.101#cache-default=153600102#103# Use 150MB input cache for everything, even local files.104#cache=153600105#106# Disable the behavior that the player will pause if the cache goes below a107# certain fill size.108#cache-pause=no109#110# Read ahead about 5 seconds of audio and video packets.111#demuxer-readahead-secs=5.0112#113# Raise readahead from demuxer-readahead-secs to this value if a cache is active.114#cache-secs=50.0115116# Display English subtitles if available.117#slang=en118119# Play Finnish audio if available, fall back to English otherwise.120#alang=fi,en121122# Change subtitle encoding. For Arabic subtitles use 'cp1256'.123# If the file seems to be valid UTF-8, prefer UTF-8.124# (You can add '+' in front of the codepage to force it.)125#sub-codepage=cp1256126127# You can also include other configuration files.128#include=/path/to/the/file/you/want/to/include129130############131# Profiles #132############133134# The options declared as part of profiles override global default settings,135# but only take effect when the profile is active.136137# The following profile can be enabled on the command line with: --profile=eye-cancer138139#[eye-cancer]140#sharpen=5141142143