From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49031) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jDAlY-0001q4-Ah for guix-patches@gnu.org; Sat, 14 Mar 2020 13:40:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jDAlX-0005nm-ES for guix-patches@gnu.org; Sat, 14 Mar 2020 13:40:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:56194) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jDAlX-0005nh-BM for guix-patches@gnu.org; Sat, 14 Mar 2020 13:40:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jDAlX-0007xd-8t for guix-patches@gnu.org; Sat, 14 Mar 2020 13:40:03 -0400 Subject: [bug#40060] [PATCH 1/2] gnu: youtube-dl: Use ffmpeg and pycryptodome Resent-Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Sat, 14 Mar 2020 17:39:50 +0000 From: Brice Waegeneire In-Reply-To: <20200314172114.GA23019@jasmine.lan> References: <20200314143418.13963-1-brice@waegenei.re> <20200314144221.17112-1-brice@waegenei.re> <20200314172114.GA23019@jasmine.lan> Message-ID: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Leo Famulari Cc: 40060@debbugs.gnu.org, Guix-patches On 2020-03-14 17:21, Leo Famulari wrote: > On Sat, Mar 14, 2020 at 03:42:20PM +0100, Brice Waegeneire wrote: >> * gnu/packages/video.scm (youtube-dl)[arguments]: Add phase >> wrap-executable. >> [inputs]: Add ffmpeg. >> [propagated-inputs]: Add python-pycryptodome. > > What do these added dependencies do? I should have written this in the cover-letter, my bad. pycryptodome is needed for the hlsative downloader, ffmpeg adds the ability to merge video and audio files downloaded separately by youtube-dl and removes the following warning: WARNING: You have requested multiple formats but ffmpeg or avconv are not installed. The formats won't be merged. Have a look in the NixOS derivation for more information on dependencies: https://github.com/NixOS/nixpkgs/blob/86a085cd4690d497c487d5090fabb0bbf093e7a2/pkgs/tools/misc/youtube-dl/default.nix#L33