about summary refs log tree commit diff
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2019-06-07 08:20:01 +0300
committergnidorah <gnidorah@users.noreply.github.com>2019-06-07 08:20:01 +0300
commit1dc8c1375798a14b7aac584c1657deed37032d20 (patch)
tree6010e432eebc9e53e0c3945484bbdbc0dd048cb9 /pkgs/tools/audio
parent699a32e5ff8ae18e068398b7da3466bf993d9be9 (diff)
downloadnixlib-1dc8c1375798a14b7aac584c1657deed37032d20.tar
nixlib-1dc8c1375798a14b7aac584c1657deed37032d20.tar.gz
nixlib-1dc8c1375798a14b7aac584c1657deed37032d20.tar.bz2
nixlib-1dc8c1375798a14b7aac584c1657deed37032d20.tar.lz
nixlib-1dc8c1375798a14b7aac584c1657deed37032d20.tar.xz
nixlib-1dc8c1375798a14b7aac584c1657deed37032d20.tar.zst
nixlib-1dc8c1375798a14b7aac584c1657deed37032d20.zip
video2midi: init at 0.3.7
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/video2midi/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/tools/audio/video2midi/default.nix b/pkgs/tools/audio/video2midi/default.nix
new file mode 100644
index 000000000000..4452aea280a6
--- /dev/null
+++ b/pkgs/tools/audio/video2midi/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchFromGitHub, python2Packages, opencv3 }:
+
+let
+  opencv3_ = python2Packages.toPythonModule (opencv3.override {
+    enablePython = true;
+    pythonPackages = python2Packages;
+    enableFfmpeg = true;
+  });
+in stdenv.mkDerivation rec {
+  pname = "video2midi";
+  version = "0.3.7";
+
+  src = fetchFromGitHub {
+    owner = "svsdval";
+    repo = pname;
+    rev = version;
+    sha256 = "00ms9iqam3ml6fxf8djki3gyifn8sfzfkkfrdgrvs0sq47wrkc39";
+  };
+
+  pythonPath = with python2Packages; [ opencv3_ midiutil pygame pyopengl ];
+  nativeBuildInputs = with python2Packages; [ python wrapPython ];
+
+  installPhase = ''
+    install -Dm755 v2m.py $out/bin/v2m.py
+    wrapPythonPrograms
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Youtube synthesia video to midi conversion tool";
+    homepage = src.meta.homepage;
+    license = licenses.gpl3;
+    maintainers = [ maintainers.gnidorah ];
+    platforms = platforms.linux;
+  };
+}