diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-08-13 21:10:11 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-08-13 21:10:11 +0600 |
commit | 7393746da213bec686f8425165854e5e383b7eb9 (patch) | |
tree | 550c159fa598f0433eb2f6706b9bd1f0150fffcf /youtube_dl/downloader | |
parent | 6828c809e44fca7b19da3c62a11cea313a86b64e (diff) |
[downloader/hls] Add _debug_cmd
Diffstat (limited to 'youtube_dl/downloader')
-rw-r--r-- | youtube_dl/downloader/hls.py | 2 |
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)) |