Add vo-amrwbenc library package.

With some changes to ffmpeg build file, this enables ffmpeg to perform
AMR-WB encoding.
This commit is contained in:
Adam Copp 2018-03-07 11:04:29 +00:00
parent 1deb779a7a
commit 1efef6b10b
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, fetchurl, autoreconfHook }:
let
version = "0.1.3";
in
stdenv.mkDerivation {
name = "vo-amrwbenc-${version}";
version = "0.1.3";
buildInputs = [ autoreconfHook ];
src = fetchurl {
url = "https://github.com/mstorsjo/vo-amrwbenc/archive/v${version}.tar.gz";
sha256 = "85c79997ba7ddb9c95b5ddbe9ea032e27595390f3cbd686ed46a69e485cc053c";
};
meta = {
homepage = "http://sourceforge.net/projects/opencore-amr/";
description = "VisualOn Adaptive Multi Rate Wideband (AMR-WB) encoder";
license = "stdenv.lib.licenses.apache";
maintainers = [ stdenv.lib.maintainers.esteth ];
};
}

View File

@ -5222,6 +5222,8 @@ with pkgs;
vncrec = callPackage ../tools/video/vncrec { };
vo-amrwbenc = callPackage ../development/libraries/vo-amrwbenc { };
vobcopy = callPackage ../tools/cd-dvd/vobcopy { };
vobsub2srt = callPackage ../tools/cd-dvd/vobsub2srt { };