Advertisement
Guest User

mpv config 2017 (work in progress)

a guest
Nov 17th, 2018
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. ########################################
  2. # Main settings not related to quality #
  3. ########################################
  4.  
  5. # Subtitles off by default.
  6. no-sub-visibility
  7.  
  8. # Default audio/subtitle lang.
  9. alang=enUS,en,eng,jp,jpn
  10. slang=enUS,en,eng
  11.  
  12. # Force stereo (may actually cause downmixing issues, see manual)
  13. audio-channels=fl-fr
  14.  
  15. # Mute
  16. # af=volume=-200
  17.  
  18. # OSD settings
  19. # osd-level=0
  20. # osd-font="Source Sans Pro"
  21. # osd-status-msg='(${percent-pos}%) ${time-pos} / ${duration}\n${?chapter:Chapter: ${chapter}}\n${?vo-drop-frame-count:Frames dropped: ${vo-drop-frame-count}}\n${?audio-params/hr-channels:Audio: ${audio-params/hr-channels}}'
  22. osd-font = "Source Sans Pro Semibold"
  23. osd-font-size = 25
  24. osd-color = "#ffffffff"
  25. osd-border-color = "#ff262626"
  26. osd-border-size = 2
  27. osd-shadow-offset = 1
  28. osd-shadow-color = "#33000000"
  29. osd-msg3 = "${osd-sym-cc}${osd-ass-cc/0} ${playback-time/full}${?length: / ${length/full}}\\N\\N{\\fnSource Sans Pro Black}File:{\\r} ${osd-ass-cc/1}${filename}${osd-ass-cc/0}{\\fnSource Sans Pro Black}${?avsync:\\N\\h\\h\\h\\hA-V:}{\\r}${?avsync: ${avsync}}\\N\\h\\h\\h\\h{\\fnSource Sans Pro Black}FPS:{\\r} ${estimated-vf-fps}\\N\\h\\h\\h\\h{\\fnSource Sans Pro Black}VO Dropped:{\\r} ${vo-drop-frame-count}\\h\\h\\h\\h{\\fnSource Sans Pro Black}VO Delayed:{\\r} ${vo-delayed-frame-count}\\h\\h\\h\\h{\\fnSource Sans Pro Black}Decoder Dropped:{\\r} ${drop-frame-count}\\h\\h\\h\\h{\\fnSource Sans Pro Black}Mistimed:{\\r} ${mistimed-frame-count}${?cache-used:\\N\\h\\h\\h\\h}{\\fnSource Sans Pro Black}${?cache-used:Cache:}{\\r}${?cache-used: ${cache-used} +${demuxer-cache-duration}s}\\N\\N{\\fnSource Sans Pro Black}Video:{\\r} ${video-codec}\\N\\h\\h\\h\\h{\\fnSource Sans Pro Black}Frame size:{\\r} ${video-params/w}x${video-params/h}\\N\\h\\h\\h\\h{\\fnSource Sans Pro Black}DAR:{\\r} ${video-params/aspect}\\N\\h\\h\\h\\h{\\fnSource Sans Pro Black}Pixel format:{\\r} ${video-params/pixelformat}\\N\\h\\h\\h\\h{\\fnSource Sans Pro Black}Colormatrix:{\\r} ${video-params/colormatrix}\\N\\h\\h\\h\\h{\\fnSource Sans Pro Black}Primaries:{\\r} ${video-params/primaries}\\N\\h\\h\\h\\h{\\fnSource Sans Pro Black}Levels:{\\r} ${video-params/colorlevels}${?audio-codec:\\N\\N}{\\fnSource Sans Pro Black}${?audio-codec:Audio:}{\\r}${?audio-codec: ${audio-codec}\\N\\h\\h\\h\\h}{\\fnSource Sans Pro Black}${?audio-codec:Sample rate:}{\\r}${?audio-codec: ${audio-samplerate}\\N\\h\\h\\h\\h}{\\fnSource Sans Pro Black}${?audio-codec:Channels:}{\\r}${?audio-codec: ${audio-channels}}"
  30.  
  31. # Reduce default OSD size, the defaults are too big.
  32. # osd-font-size=18
  33.  
  34. # Make console output less verbose.
  35. quiet
  36.  
  37.  
  38. ###########
  39. # Testing #
  40. ###########
  41.  
  42. # Make video run synchronously to the display FPS
  43. #video-sync=display-resample
  44.  
  45. # Prevent sound playback of any other program until mpv exits. Requests exclusive, direct hardware access.
  46. # audio-exclusive
  47.  
  48. [extension.webm]
  49. autofit = 0
  50. autofit-larger = 2560x1440
  51. no-border
  52. loop-file
  53. save-position-on-quit = no
  54.  
  55.  
  56. ############################
  57. # Quality related settings #
  58. ############################
  59.  
  60. # Backend related settings
  61. profile=gpu-hq
  62. gpu-context=dxinterop
  63.  
  64. # High-quality scale settings, can be disabled for performance
  65. # scale=ewa_lanczossharp
  66. # cscale=ewa_lanczossoft
  67.  
  68. # Color correction related
  69. # target-prim=bt.709
  70. # target-trc=bt.1886
  71. # gamma-auto
  72. # icc-profile-auto
  73.  
  74. # Blend subtitles directly onto upscaled video frames. This does restrict subtitles to the visible portion of the video.
  75. # blend-subtitles=yes
  76.  
  77. # Screenshot quality
  78. screenshot-format=png
  79.  
  80.  
  81. #####################
  82. # Optional settings #
  83. #####################
  84.  
  85. # After playback
  86. # keep-open=yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement