diff options
| author | adikro <adikro@disroot.org> | 2025-12-23 09:30:43 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2025-12-23 09:30:43 +0100 |
| commit | 2e0eb02fd744aed40ce61c56f5807c1e5e6f1224 (patch) | |
| tree | 5f39d14f8a763cbb7fd5d1519e42f0ea01d5a11b /hm/soft/media.nix | |
| parent | 49bf16698295cd068e125333ec2f7c7bfa6bda27 (diff) | |
added obs clips and a basic mpv config to be finished
Diffstat (limited to 'hm/soft/media.nix')
| -rw-r--r-- | hm/soft/media.nix | 25 |
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 ]; }; } |
