AndrzejL

AndrzejL /home/andrzejl/.mpv/config

Oct 19th, 2013
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. #
  2. # mpv configuration file
  3. #
  4. # Configuration files are read system-wide from /usr/local/etc/mpv.conf
  5. # and per-user from ~/.mpv/config, where per-user settings override
  6. # system-wide settings, all of which are overridden by the command line.
  7. #
  8. # Configuration file settings and the command line options use the same
  9. # underlying mechanisms. Most options can be put into the configuration file
  10. # by dropping the preceding '--'. See the man page for a complete list of
  11. # options.
  12. #
  13. # Lines starting with '#' are comments and are ignored.
  14. #
  15. # See the CONFIGURATION FILES section in the man page
  16. # for a detailed description of the syntax.
  17. #
  18. # Profiles should be placed at the bottom of the configuration file to ensure
  19. # that settings wanted as defaults are not restricted to specific profiles.
  20. #
  21. # Note that the commented example options usually do _not_ set the default
  22. # values. Calling mpv with --list-options is a nice way to see the default
  23. # values for most options.
  24.  
  25. ##################
  26. # video settings #
  27. ##################
  28.  
  29. # Specify default video driver (see --vo=help for a list).
  30. vo=xv
  31.  
  32. # Start in fullscreen mode by default.
  33. #fs=yes
  34.  
  35. # force starting with centered window
  36. #geometry=50%:50%
  37.  
  38. # don't allow a new window to have a size larger than 90% of the screen size
  39. #autofit-larger=90%x90%
  40.  
  41. # Disable the On Screen Controller (OSC).
  42. osc=no
  43.  
  44. # Keep the player window on top of all other windows.
  45. #ontop=yes
  46.  
  47.  
  48. ##################
  49. # audio settings #
  50. ##################
  51.  
  52. # Specify default audio driver (see --ao=help for a list).
  53. ao=alsa
  54.  
  55. # Disable softvol usage, and always use the system mixer if available.
  56. #softvol=no
  57.  
  58.  
  59. ##################
  60. # other settings #
  61. ##################
  62.  
  63. # Pretend to be a web browser. Might fix playback with some streaming sites.
  64. user-agent="Mozilla/5.0"
  65.  
  66. # cache settings
  67. #
  68. # Use 8MB input cache by default. The cache is enabled for network streams only.
  69. cache-default = 8192
  70. #
  71. # Use 8MB input cache for everything, even local files.
  72. cache = 8192
  73. #
  74. # Prefill 20% of the cache before starting playback.
  75. cache-min = 20.0
  76. #
  77. # Prefill 50% of the cache before restarting playback after the cache emptied.
  78. #cache-seek-min = 50
  79.  
  80. # Display English subtitles if available.
  81. #slang = en
  82.  
  83. # Play Finnish audio if available, fall back to English otherwise.
  84. #alang = fi,en
  85.  
  86. # Enable hardware decoding if available. Often, this requires using an certain
  87. # video output, otherwise no hardware decoding will be used.
  88. #hwdec = auto
  89.  
  90. ############
  91. # Profiles #
  92. ############
  93.  
  94. # The options declared as part of profiles override global default settings,
  95. # but only take effect when the profile is active.
  96.  
  97. # The following profile can be enabled on the command line with: --profile=vdpau
  98.  
  99. #[vdpau]
  100. # The profile forces the vdpau VO.
  101. #vo=vdpau
  102. # Use hardware decoding (this might break playback of some h264 files)
  103. #hwdec=vdpau
  104. # Most video filters do not work with vdpau.
  105. #vf-clr=yes
  106.  
  107. # You can also include other configuration files.
  108. #include = /path/to/the/file/you/want/to/include
  109.  
  110. framedrop=yes
  111. quiet=no
  112. keepaspect=no
  113. autosync=30
  114. mc=0.3
  115. stop-screensaver=yes
  116. monitorpixelaspect=1.0
  117. correct-pts=no
Advertisement
Add Comment
Please, Sign In to add comment