ffmpeg-normalize: init at 1.15.7

This commit is contained in:
Pavol Rusnak 2020-03-14 17:54:45 +01:00 committed by Jon
parent 1285836756
commit 931dd07712
2 changed files with 31 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };