This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
2,757 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
# MPV v3 Input Configuration - version 1.0.10 | ||
# MPV v3 Input Configuration - version 1.1.00 | ||
|
||
# Mouse | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
[extension.gif] | ||
profile-desc=GIF | ||
cache=no | ||
no-pause | ||
loop-file=yes | ||
[extension.png] | ||
profile-desc=PNG | ||
video-aspect-override=no | ||
loop-file=yes | ||
[extension.jpg] | ||
profile-desc=JPG | ||
video-aspect-override=no | ||
loop-file=yes | ||
[extension.jpeg] | ||
profile-desc=JPEG | ||
profile=extension.jpg | ||
loop-file=yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
osd-bar-align-y=-1 # progress bar y alignment (-1 top, 0 centered, 1 bottom) | ||
osd-bar-h=2 # height of osd bar as a fractional percentage of your screen height | ||
osd-bar-w=99 # width of " " " | ||
osd-border-color='#DD322640' # ARGB format | ||
osd-border-size=2 # size for osd text and progress bar | ||
osd-color='#FFFFFFFF' # ARGB format | ||
osd-duration=1000 # hide the osd after x ms | ||
osd-font-size=32 | ||
#osd-font='Arial' # sets a custom font (comment out line if font change is undesired) | ||
osd-status-msg='${time-pos} / ${duration}${?percent-pos: (${percent-pos}%)}${?frame-drop-count:${!frame-drop-count==0: Dropped: ${frame-drop-count}}}\n${?chapter:Chapter: ${chapter}}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
# Clears all shaders from the list | ||
glsl-shaders-clr | ||
|
||
# ===== igv shaders ====== | ||
# REF: https://gist.github.com/igv | ||
|
||
# SSimDownscaler: Perceptually based downscaler. | ||
linear-downscaling=no | ||
glsl-shaders-append="shaders/SSimDownscaler.glsl" # https://gist.github.com/igv/36508af3ffc84410fe39761d6969be10 | ||
|
||
# SSimSuperRes: Make corrections to the image upscaled by mpv built-in scaler | ||
# (removes ringing artifacts and restores original sharpness). | ||
glsl-shaders-append="shaders/SSimSuperRes.glsl" # https://gist.github.com/igv/2364ffa6e81540f29cb7ab4c9bc05b6b | ||
|
||
# KrigBilateral: Chroma scaler that uses luma information for high quality upscaling. | ||
glsl-shaders-append="shaders/KrigBilateral.glsl" # https://gist.github.com/igv/a015fc885d5c22e6891820ad89555637 | ||
|
||
# ===== GPU shaders ===== | ||
# REF: https://gist.github.com/agyild | ||
|
||
# Adaptive-directional sharpening algorithm shaders. | ||
glsl-shaders-append="shaders/NVScaler.glsl" # https://gist.github.com/agyild/7e8951915b2bf24526a9343d951db214 | ||
glsl-shaders-append="shaders/NVSharpen.glsl" # https://gist.github.com/agyild/7e8951915b2bf24526a9343d951db214 | ||
|
||
# FidelityFX CAS - Sharpening shader that provides an even level of sharpness across the frame. | ||
glsl-shaders-append="shaders/CAS.glsl" # https://gist.github.com/agyild/bbb4e58298b2f86aa24da3032a0d2ee6 | ||
|
||
# AMD FidelityFX Super Resolution - A spatial upscaler which provides consistent upscaling quality | ||
# regardless of whether the frame is in movement. | ||
glsl-shaders-append="shaders/FSR.glsl" # https://gist.github.com/agyild/82219c545228d70c5604f865ce0b0ce5 | ||
|
||
# DEACTIVATED | ||
#[upscale-lowres] | ||
#profile-desc=Upscales low resolution videos using upscaling shaders. | ||
#profile-cond=height <= 1000 | ||
# AMD (modal: switch depending on your GPU, if no discrete GPU then comment out four lines) | ||
#glsl-shaders-append="shaders/CAS.glsl" # https://gist.github.com/agyild/bbb4e58298b2f86aa24da3032a0d2ee6 | ||
#glsl-shaders-append="shaders/FSR.glsl" # https://gist.github.com/agyild/82219c545228d70c5604f865ce0b0ce5 | ||
# NVidia (modal: switch depending on your GPU, if no discrete GPU then comment out four lines) | ||
#glsl-shaders-append="shaders/NVScaler.glsl" # https://gist.github.com/agyild/7e8951915b2bf24526a9343d951db214 | ||
#glsl-shaders-append="shaders/NVSharpen.glsl" # https://gist.github.com/agyild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
# Display English Subtitles if available | ||
#sub-ass-force-margins=yes | ||
#sub-ass-force-style=Kerning=yes # allows you to override style parameters of ASS scripts | ||
#sub-auto=fuzzy # external subs don't have to match the file name exactly to autoload | ||
#sub-border-color="#FF262626" | ||
#sub-border-size=3.0 | ||
#sub-color="#FFFFFFFF" | ||
#sub-shadow-color="#33000000" | ||
#sub-shadow-offset=1 | ||
#sub-spacing=0.5 | ||
#sub-use-margins=yes | ||
alang=en,eng # default audio languages | ||
embeddedfonts=yes # use embedded fonts for SSA/ASS subs | ||
slang=en,eng # default subtitles languages | ||
sub-auto=all | ||
sub-color='#eaea27' # use yellow sub color (remove this line to make subtitles the default white colour) | ||
sub-file-paths-append='Subs/${filename/no-ext}' # search for external subs in these relative subdirectories | ||
sub-file-paths-append='Subs/${filename}' | ||
sub-file-paths-append='subs/${filename/no-ext}' | ||
sub-file-paths-append='subs/${filename}' | ||
sub-file-paths-append=ASS | ||
sub-file-paths-append=Ass | ||
sub-file-paths-append=SRT | ||
sub-file-paths-append=Srt | ||
sub-file-paths-append=Sub | ||
sub-file-paths-append=Subs | ||
sub-file-paths-append=Subtitles | ||
sub-file-paths-append=ass | ||
sub-file-paths-append=srt | ||
sub-file-paths-append=sub | ||
sub-file-paths-append=subs | ||
sub-file-paths-append=subtitles | ||
sub-fix-timing=no # do not try to fix gaps (which might make it worse in some cases) | ||
sub-font-size=45 | ||
sub-font="Arial" | ||
sub-scale-with-window=yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
cursor-autohide=100 # autohides the cursor after x ms | ||
cursor-autohide-fs-only=yes # don't autohide the cursor in window mode, only fullscreen | ||
msg-color=yes # color log messages on terminal | ||
msg-module=yes # prepend module name to log messages | ||
term-osd-bar=yes # displays a progress bar on the terminal |
Oops, something went wrong.
d7366c1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Version 1.1.00 is out. Be sure to read the new usage instructions in README.md.