summaryrefslogtreecommitdiff
path: root/hm/soft/media.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hm/soft/media.nix')
-rw-r--r--hm/soft/media.nix25
1 files changed, 24 insertions, 1 deletions
diff --git a/hm/soft/media.nix b/hm/soft/media.nix
index abf3dff..0a17f3e 100644
--- a/hm/soft/media.nix
+++ b/hm/soft/media.nix
@@ -8,8 +8,30 @@ in
programs.mpv = {
enable = true;
config = {
-
+ profile = "gpu-hq";
+ vo = "gpu-next";
+ hwdec = "auto-safe";
+ save-position-on-quit = true;
+ keep-open = "yes";
+ sub-auto = "fuzzy";
+ volume-max = "200";
};
+ scripts = with pkgs.mpvScripts; [
+ webtorrent-mpv-hook
+ visualizer
+ videoclip
+ thumbfast
+ reload
+ mpv-subtitle-lines
+ mpv-notify-send
+ mpv-cheatsheet
+ modernz
+ # modernx
+ memo
+ # builtins.autoload
+ autosubsync-mpv
+ autosub
+ ];
};
programs.yt-dlp = {
enable = true;
@@ -20,6 +42,7 @@ in
syncplay-nogui
ffmpeg
imagemagick
+ exiftool
];
};
}