Merge pull request #273857 from nbraud/mpvScripts/quack
mpvScripts.quack: init at unstable-2020-05-26
This commit is contained in:
commit
5e34f283b2
@ -72,6 +72,7 @@ let
|
|||||||
mpv-playlistmanager = callPackage ./mpv-playlistmanager.nix { };
|
mpv-playlistmanager = callPackage ./mpv-playlistmanager.nix { };
|
||||||
mpv-webm = callPackage ./mpv-webm.nix { };
|
mpv-webm = callPackage ./mpv-webm.nix { };
|
||||||
mpvacious = callPackage ./mpvacious.nix { };
|
mpvacious = callPackage ./mpvacious.nix { };
|
||||||
|
quack = callPackage ./quack.nix { };
|
||||||
quality-menu = callPackage ./quality-menu.nix { };
|
quality-menu = callPackage ./quality-menu.nix { };
|
||||||
simple-mpv-webui = callPackage ./simple-mpv-webui.nix { };
|
simple-mpv-webui = callPackage ./simple-mpv-webui.nix { };
|
||||||
sponsorblock = callPackage ./sponsorblock.nix { };
|
sponsorblock = callPackage ./sponsorblock.nix { };
|
||||||
|
31
pkgs/applications/video/mpv/scripts/quack.nix
Normal file
31
pkgs/applications/video/mpv/scripts/quack.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, unstableGitUpdater
|
||||||
|
, buildLua }:
|
||||||
|
|
||||||
|
buildLua rec {
|
||||||
|
pname = "mpv-quack";
|
||||||
|
|
||||||
|
version = "unstable-2020-05-26";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "CounterPillow";
|
||||||
|
repo = pname;
|
||||||
|
rev = "1c87f36f9726d462dd112188c04be54d85692cf3";
|
||||||
|
hash = "sha256-dEnJbS8RJoAxpKINdoMHN4l7vpEdf7+C5JVWpK0VXMw=";
|
||||||
|
};
|
||||||
|
passthru.updateScript = unstableGitUpdater {};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Reduce audio volume after seeking";
|
||||||
|
longDescription = ''
|
||||||
|
quack is an mpv script to temporarily reduce the volume after a seek,
|
||||||
|
in order to avoid loud noises when scrubbing through a movie.
|
||||||
|
|
||||||
|
The volume is linearly increased back up to its original level.
|
||||||
|
Repeated seeks before the transition is done work as well.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/CounterPillow/quack";
|
||||||
|
license = lib.licenses.gpl3;
|
||||||
|
maintainers = with lib.maintainers; [ nicoo ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user