summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-08-13 21:10:11 +0600
committerSergey M․ <dstftw@gmail.com>2015-08-13 21:10:11 +0600
commit7393746da213bec686f8425165854e5e383b7eb9 (patch)
tree550c159fa598f0433eb2f6706b9bd1f0150fffcf
parent6828c809e44fca7b19da3c62a11cea313a86b64e (diff)
downloadyoutube-dl-7393746da213bec686f8425165854e5e383b7eb9.tar.gz
youtube-dl-7393746da213bec686f8425165854e5e383b7eb9.tar.xz
youtube-dl-7393746da213bec686f8425165854e5e383b7eb9.zip
[downloader/hls] Add _debug_cmd
-rw-r--r--youtube_dl/downloader/hls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py
index 60dca0ab1..2b6c3370f 100644
--- 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))