|
|
|
@ -24,10 +24,12 @@ class RtmpFD(FileDownloader):
|
|
|
|
|
def real_download(self, filename, info_dict):
|
|
|
|
|
def run_rtmpdump(args):
|
|
|
|
|
start = time.time()
|
|
|
|
|
resume_percent = None
|
|
|
|
|
resume_downloaded_data_len = None
|
|
|
|
|
proc = subprocess.Popen(args, stderr=subprocess.PIPE)
|
|
|
|
|
cursor_in_new_line = True
|
|
|
|
|
|
|
|
|
|
def dl():
|
|
|
|
|
resume_percent = None
|
|
|
|
|
resume_downloaded_data_len = None
|
|
|
|
|
proc_stderr_closed = False
|
|
|
|
|
while not proc_stderr_closed:
|
|
|
|
|
# read line from stderr
|
|
|
|
@ -88,7 +90,12 @@ class RtmpFD(FileDownloader):
|
|
|
|
|
self.to_screen('')
|
|
|
|
|
cursor_in_new_line = True
|
|
|
|
|
self.to_screen('[rtmpdump] ' + line)
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
dl()
|
|
|
|
|
finally:
|
|
|
|
|
proc.wait()
|
|
|
|
|
|
|
|
|
|
if not cursor_in_new_line:
|
|
|
|
|
self.to_screen('')
|
|
|
|
|
return proc.returncode
|
|
|
|
@ -163,7 +170,13 @@ class RtmpFD(FileDownloader):
|
|
|
|
|
RD_INCOMPLETE = 2
|
|
|
|
|
RD_NO_CONNECT = 3
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
retval = run_rtmpdump(args)
|
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
|
if not info_dict.get('is_live'):
|
|
|
|
|
raise
|
|
|
|
|
retval = RD_SUCCESS
|
|
|
|
|
self.to_screen('\n[rtmpdump] Interrupted by user')
|
|
|
|
|
|
|
|
|
|
if retval == RD_NO_CONNECT:
|
|
|
|
|
self.report_error('[rtmpdump] Could not connect to RTMP server.')
|
|
|
|
|