From: Yen Chi Hsuan Date: Thu, 14 Apr 2016 07:07:31 +0000 (+0800) Subject: [downloader/rtsp] Print the command X-Git-Tag: 2016.04.19~55 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=f5d8743e0a1fdcbfed2bea4fb87bf5aaf40c1dfa;p=youtube-dl.git [downloader/rtsp] Print the command --- diff --git a/youtube_dl/downloader/rtsp.py b/youtube_dl/downloader/rtsp.py index 3eb29526cb..939358b2a2 100644 --- 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))