# mpv docs: # - # - # curated mpv mods/scripts/users: # - { config, lib, pkgs, ... }: let cfg = config.sane.programs.mpv; in { sane.programs.mpv = { configOption = with lib; mkOption { default = {}; type = types.submodule { options.vo = mkOption { type = types.nullOr types.str; default = null; description = "--vo=FOO flag to pass to mpv"; }; }; }; package = pkgs.wrapMpv pkgs.mpv-unwrapped { scripts = with pkgs.mpvScripts; [ mpris # uosc pkgs.mpv-uosc-latest ]; extraMakeWrapperArgs = lib.optionals (cfg.config.vo != null) [ # 2023/08/29: fixes an error where mpv on moby launches with the message # "DRM_IOCTL_MODE_CREATE_DUMB failed: Cannot allocate memory" # audio still works, and controls, screenshotting, etc -- just not the actual rendering # this is likely a regression for mpv 0.36.0. # the actual error message *appears* to come from the mesa library, but it's tough to trace. # # backend compatibility (2023/10/22): # run with `--vo=help` to see a list of all output options. # non-exhaustive (W=works, F=fails, A=audio-only, U=audio+ui only (no video)) # ? null Null video output # A (default) # A dmabuf-wayland Wayland dmabuf video output # A libmpv render API for libmpv (mpv plays the audio, but doesn't even render a window) # A vdpau VDPAU with X11 # F drm Direct Rendering Manager (software scaling) # F gpu-next Video output based on libplacebo # F vaapi VA API with X11 # F x11 X11 (software scaling) # F xv X11/Xv # U gpu Shader-based GPU Renderer # W caca libcaca (terminal rendering) # W sdl SDL 2.0 Renderer # W wlshm Wayland SHM video output (software scaling) "--add-flags" "--vo=${cfg.config.vo}" ]; }; persist.byStore.plaintext = [ ".local/state/mpv/watch_later" ]; fs.".config/mpv/input.conf".symlink.text = '' # let volume/power keys be interpreted by the system. # this is important for sxmo. # mpv defaults is POWER = close, VOLUME_{UP,DOWN} = adjust application-level volume POWER ignore VOLUME_UP ignore VOLUME_DOWN ignore ''; fs.".config/mpv/mpv.conf".symlink.text = '' save-position-on-quit=yes keep-open=yes # force GUI, even for tracks w/o album art # see: player-operation-mode=pseudo-gui # use uosc instead (for On Screen Controls) osc=no # uosc provides its own seeking/volume indicators, so you also don't need this osd-bar=no # uosc will draw its own window controls if you disable window border border=no ''; fs.".config/mpv/script-opts/osc.conf".symlink.text = '' # make the on-screen controls *always* visible # unfortunately, this applies to full-screen as well # - docs: # if uosc is installed, this file is unused visibility=always ''; fs.".config/mpv/script-opts/uosc.conf".symlink.text = let play_pause_btn = "cycle:play_arrow:pause:no=pause/yes=play_arrow"; rev_btn = "command:replay_10:seek -10"; fwd_btn = "command:forward_30:seek 30"; in '' # docs: # - # - timeline_style=bar timeline_persistency=paused,audio controls_persistency=paused,audio volume_persistency=audio volume_opacity=0.75 # speed_persistency=paused,audio # vvv want a close button? top_bar=always top_bar_persistency=paused controls=menu,