about summary refs log tree commit diff
path: root/pkgs/applications/video/mpv/scripts/mpv.nix
blob: ddf22e5dd03cf064518781a4477dd60ee6c26497 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  lib,
  buildLua,
  mpv-unwrapped,
}:

let
  mkBuiltin =
    name: args:
    let
      srcPath = "TOOLS/lua/${name}.lua";
    in
    buildLua (
      lib.attrsets.recursiveUpdate rec {
        inherit (mpv-unwrapped) src version;
        pname = "mpv-${name}";

        dontUnpack = true;
        scriptPath = "${src}/${srcPath}";

        meta = with lib; {
          inherit (mpv-unwrapped.meta) license;
          homepage = "https://github.com/mpv-player/mpv/blob/v${version}/${srcPath}";
        };
      } args
    );
in
lib.mapAttrs (name: lib.makeOverridable (mkBuiltin name)) {
  acompressor.meta = {
    description = "Script to toggle and control ffmpeg's dynamic range compression filter.";
    maintainers = with lib.maintainers; [ nicoo ];
  };

  autocrop.meta.description = "This script uses the lavfi cropdetect filter to automatically insert a crop filter with appropriate parameters for the currently playing video.";

  autodeint.meta.description = "This script uses the lavfi idet filter to automatically insert the appropriate deinterlacing filter based on a short section of the currently playing video.";

  autoload.meta = {
    description = "This script automatically loads playlist entries before and after the currently played file";
    maintainers = [ lib.maintainers.dawidsowa ];
  };
}