1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-26 19:25:45 +02:00

[downloader/rtsp] Print the command

This commit is contained in:
Yen Chi Hsuan 2016-04-14 15:07:31 +08:00
parent d1c4e4ba15
commit f5d8743e0a
No known key found for this signature in database
GPG Key ID: 3FDDD575826C5C30

View File

@ -27,6 +27,8 @@ def real_download(self, filename, info_dict):
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))