youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 7393746da213bec686f8425165854e5e383b7eb9
parent 6828c809e44fca7b19da3c62a11cea313a86b64e
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 13 Aug 2015 21:10:11 +0600

[downloader/hls] Add _debug_cmd

Diffstat:
Myoutube_dl/downloader/hls.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py @@ -32,6 +32,8 @@ class HlsFD(FileDownloader): for opt in (ffpp.executable, '-y', '-i', url, '-f', 'mp4', '-c', 'copy', '-bsf:a', 'aac_adtstoasc')] args.append(encodeFilename(tmpfilename, True)) + self._debug_cmd(args) + retval = subprocess.call(args) if retval == 0: fsize = os.path.getsize(encodeFilename(tmpfilename))