Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

138 lines
4.3 KiB

  1. #
  2. # Example mpv configuration file
  3. #
  4. # Warning:
  5. #
  6. # The commented example options usually do _not_ set the default values. Call
  7. # mpv with --list-options to see the default values for most options. There is
  8. # no builtin or example mpv.conf with all the defaults.
  9. #
  10. #
  11. # Configuration files are read system-wide from /usr/local/etc/mpv.conf
  12. # and per-user from ~/.config/mpv/mpv.conf, where per-user settings override
  13. # system-wide settings, all of which are overridden by the command line.
  14. #
  15. # Configuration file settings and the command line options use the same
  16. # underlying mechanisms. Most options can be put into the configuration file
  17. # by dropping the preceding '--'. See the man page for a complete list of
  18. # options.
  19. #
  20. # Lines starting with '#' are comments and are ignored.
  21. #
  22. # See the CONFIGURATION FILES section in the man page
  23. # for a detailed description of the syntax.
  24. #
  25. # Profiles should be placed at the bottom of the configuration file to ensure
  26. # that settings wanted as defaults are not restricted to specific profiles.
  27. ##################
  28. # video settings #
  29. ##################
  30. # Start in fullscreen mode by default.
  31. #fs=yes
  32. # force starting with centered window
  33. #geometry=50%:50%
  34. # don't allow a new window to have a size larger than 90% of the screen size
  35. #autofit-larger=90%x90%
  36. # Do not close the window on exit.
  37. #keep-open=yes
  38. # Do not wait with showing the video window until it has loaded. (This will
  39. # resize the window once video is loaded. Also always shows a window with
  40. # audio.)
  41. #force-window=immediate
  42. # Disable the On Screen Controller (OSC).
  43. #osc=no
  44. # Keep the player window on top of all other windows.
  45. #ontop=yes
  46. # Specify high quality video rendering preset (for --vo=gpu only)
  47. # Can cause performance problems with some drivers and GPUs.
  48. #profile=gpu-hq
  49. # Force video to lock on the display's refresh rate, and change video and audio
  50. # speed to some degree to ensure synchronous playback - can cause problems
  51. # with some drivers and desktop environments.
  52. #video-sync=display-resample
  53. # Enable hardware decoding if available. Often, this does not work with all
  54. # video outputs, but should work well with default settings on most systems.
  55. # If performance or energy usage is an issue, forcing the vdpau or vaapi VOs
  56. # may or may not help.
  57. #hwdec=auto
  58. ##################
  59. # audio settings #
  60. ##################
  61. # Specify default audio device. You can list devices with: --audio-device=help
  62. # The option takes the device string (the stuff between the '...').
  63. #audio-device=alsa/default
  64. # Do not filter audio to keep pitch when changing playback speed.
  65. #audio-pitch-correction=no
  66. # Output 5.1 audio natively, and upmix/downmix audio with a different format.
  67. #audio-channels=5.1
  68. # Disable any automatic remix, _if_ the audio output accepts the audio format.
  69. # of the currently played file. See caveats mentioned in the manpage.
  70. # (The default is "auto-safe", see manpage.)
  71. #audio-channels=auto
  72. ##################
  73. # other settings #
  74. ##################
  75. # Pretend to be a web browser. Might fix playback with some streaming sites,
  76. # but also will break with shoutcast streams.
  77. user-agent="Mozilla/5.0"
  78. # cache settings
  79. #
  80. # Use a large seekable RAM cache even for local input.
  81. cache=yes
  82. #
  83. # Use extra large RAM cache (needs cache=yes to make it useful).
  84. #demuxer-max-bytes=500M
  85. #demuxer-max-back-bytes=100M
  86. #
  87. # Disable the behavior that the player will pause if the cache goes below a
  88. # certain fill size.
  89. #cache-pause=no
  90. #
  91. # Store cache payload on the hard disk instead of in RAM. (This may negatively
  92. # impact performance unless used for slow input such as network.)
  93. #cache-dir=~/.cache/
  94. #cache-on-disk=yes
  95. # Display English subtitles if available.
  96. slang=en
  97. # Play Finnish audio if available, fall back to English otherwise.
  98. #alang=fi,en
  99. # Change subtitle encoding. For Arabic subtitles use 'cp1256'.
  100. # If the file seems to be valid UTF-8, prefer UTF-8.
  101. # (You can add '+' in front of the codepage to force it.)
  102. #sub-codepage=cp1256
  103. # You can also include other configuration files.
  104. #include=/path/to/the/file/you/want/to/include
  105. ############
  106. # Profiles #
  107. ############
  108. # The options declared as part of profiles override global default settings,
  109. # but only take effect when the profile is active.
  110. # The following profile can be enabled on the command line with: --profile=eye-cancer
  111. #[eye-cancer]
  112. #sharpen=5