youtube-dl

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

commit f5d8743e0a1fdcbfed2bea4fb87bf5aaf40c1dfa
parent d1c4e4ba150562fcf7aedef26646dff7425ccd73
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Thu, 14 Apr 2016 15:07:31 +0800

[downloader/rtsp] Print the command

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

diff --git a/youtube_dl/downloader/rtsp.py b/youtube_dl/downloader/rtsp.py @@ -27,6 +27,8 @@ class RtspFD(FileDownloader): self.report_error('MMS or RTSP download detected but neither "mplayer" nor "mpv" could be run. Please install any.') return False + self._debug_cmd(args) + retval = subprocess.call(args) if retval == 0: fsize = os.path.getsize(encodeFilename(tmpfilename))