ffmpeg-normalize: init at 1.15.7
This commit is contained in:
parent
1285836756
commit
931dd07712
2 changed files with 31 additions and 0 deletions
29
pkgs/applications/video/ffmpeg-normalize/default.nix
Normal file
29
pkgs/applications/video/ffmpeg-normalize/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib
|
||||
, buildPythonApplication
|
||||
, fetchPypi
|
||||
, ffmpeg
|
||||
, tqdm
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "ffmpeg-normalize";
|
||||
version = "1.15.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0161939f864e973b11d50170c657baf3e1433147f46c74a74ed5025a822e9a2d";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ ffmpeg tqdm ];
|
||||
|
||||
checkPhase = ''
|
||||
$out/bin/ffmpeg-normalize --help > /dev/null
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Normalize audio via ffmpeg";
|
||||
homepage = "https://github.com/slhck/ffmpeg-normalize";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ prusnak ];
|
||||
};
|
||||
}
|
|
@ -11446,6 +11446,8 @@ in
|
|||
|
||||
ffmpeg-sixel = callPackage ../development/libraries/ffmpeg-sixel { };
|
||||
|
||||
ffmpeg-normalize = python3Packages.callPackage ../applications/video/ffmpeg-normalize { };
|
||||
|
||||
ffms = callPackage ../development/libraries/ffms { };
|
||||
|
||||
fftw = callPackage ../development/libraries/fftw { };
|
||||
|
|
Loading…
Reference in a new issue