yt-dlp: init at 2021.07.21
This commit is contained in:
parent
53bd44342d
commit
e40ceba3fc
3 changed files with 73 additions and 0 deletions
62
pkgs/tools/misc/yt-dlp/default.nix
Normal file
62
pkgs/tools/misc/yt-dlp/default.nix
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
{ lib, fetchurl, buildPythonPackage
|
||||||
|
, zip, ffmpeg, rtmpdump, phantomjs2, atomicparsley, pycryptodome, pandoc
|
||||||
|
, fetchFromGitHub
|
||||||
|
, websockets, mutagen
|
||||||
|
, ffmpegSupport ? true
|
||||||
|
, rtmpSupport ? true
|
||||||
|
, phantomjsSupport ? false
|
||||||
|
, hlsEncryptedSupport ? true
|
||||||
|
, installShellFiles, makeWrapper }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "yt-dlp";
|
||||||
|
# The websites yt-dlp deals with are a very moving target. That means that
|
||||||
|
# downloads break constantly. Because of that, updates should always be backported
|
||||||
|
# to the latest stable release.
|
||||||
|
version = "2021.07.21";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "yt-dlp";
|
||||||
|
repo = "yt-dlp";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "ziOW52LJUBe0j7ru8GYgiUCE6YJeBTTjm+H6W8EZjuY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
||||||
|
buildInputs = [ zip pandoc ];
|
||||||
|
propagatedBuildInputs = [ websockets mutagen ]
|
||||||
|
++ lib.optional hlsEncryptedSupport pycryptodome;
|
||||||
|
|
||||||
|
# Ensure these utilities are available in $PATH:
|
||||||
|
# - ffmpeg: post-processing & transcoding support
|
||||||
|
# - rtmpdump: download files over RTMP
|
||||||
|
# - atomicparsley: embedding thumbnails
|
||||||
|
makeWrapperArgs = let
|
||||||
|
packagesToBinPath = [ atomicparsley ]
|
||||||
|
++ lib.optional ffmpegSupport ffmpeg
|
||||||
|
++ lib.optional rtmpSupport rtmpdump
|
||||||
|
++ lib.optional phantomjsSupport phantomjs2;
|
||||||
|
in [ ''--prefix PATH : "${lib.makeBinPath packagesToBinPath}"'' ];
|
||||||
|
|
||||||
|
setupPyBuildFlags = [
|
||||||
|
"build_lazy_extractors"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Requires network
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/yt-dlp/yt-dlp/";
|
||||||
|
description = "Command-line tool to download videos from YouTube.com and other sites (youtube-dl fork)";
|
||||||
|
longDescription = ''
|
||||||
|
yt-dlp is a youtube-dl fork based on the now inactive youtube-dlc.
|
||||||
|
|
||||||
|
youtube-dl is a small, Python-based command-line program
|
||||||
|
to download videos from YouTube.com and a few more sites.
|
||||||
|
youtube-dl is released to the public domain, which means
|
||||||
|
you can modify it, redistribute it or use it however you like.
|
||||||
|
'';
|
||||||
|
license = licenses.publicDomain;
|
||||||
|
maintainers = with maintainers; [ mkg20001 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -28660,6 +28660,10 @@ with pkgs;
|
||||||
|
|
||||||
youtube-dl-light = with python3Packages; toPythonApplication youtube-dl-light;
|
youtube-dl-light = with python3Packages; toPythonApplication youtube-dl-light;
|
||||||
|
|
||||||
|
yt-dlp = with python3Packages; toPythonApplication yt-dlp;
|
||||||
|
|
||||||
|
yt-dlp-light = with python3Packages; toPythonApplication yt-dlp-light;
|
||||||
|
|
||||||
youtube-viewer = perlPackages.WWWYoutubeViewer;
|
youtube-viewer = perlPackages.WWWYoutubeViewer;
|
||||||
|
|
||||||
ytalk = callPackage ../applications/networking/instant-messengers/ytalk { };
|
ytalk = callPackage ../applications/networking/instant-messengers/ytalk { };
|
||||||
|
|
|
@ -9529,6 +9529,13 @@ in {
|
||||||
phantomjsSupport = false;
|
phantomjsSupport = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
yt-dlp = callPackage ../tools/misc/yt-dlp { };
|
||||||
|
|
||||||
|
yt-dlp-light = callPackage ../tools/misc/yt-dlp {
|
||||||
|
ffmpegSupport = false;
|
||||||
|
phantomjsSupport = false;
|
||||||
|
};
|
||||||
|
|
||||||
youtube-search = callPackage ../development/python-modules/youtube-search { };
|
youtube-search = callPackage ../development/python-modules/youtube-search { };
|
||||||
|
|
||||||
youtube-transcript-api = callPackage ../development/python-modules/youtube-transcript-api { };
|
youtube-transcript-api = callPackage ../development/python-modules/youtube-transcript-api { };
|
||||||
|
|
Loading…
Reference in a new issue