youtube-dl

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

commit 3524175625a88824798ee38d59314844318232e3
parent 7b9965ea9342455a7d60e4472695c6ce0ee407b4
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed,  5 Mar 2014 22:12:02 +0700

Use meaningful return value constants for rtmpdump

Diffstat:
Myoutube_dl/downloader/rtmp.py | 16++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/youtube_dl/downloader/rtmp.py b/youtube_dl/downloader/rtmp.py @@ -152,22 +152,26 @@ class RtmpFD(FileDownloader): shell_quote = repr self.to_screen(u'[debug] rtmpdump command line: ' + shell_quote(str_args)) + RD_SUCCESS = 0 + RD_FAILED = 1 + RD_INCOMPLETE = 2 + retval = run_rtmpdump(args) - while (retval == 2 or retval == 1) and not test: + while (retval == RD_INCOMPLETE or retval == RD_ FAILED) and not test: prevsize = os.path.getsize(encodeFilename(tmpfilename)) self.to_screen(u'[rtmpdump] %s bytes' % prevsize) time.sleep(5.0) # This seems to be needed - retval = run_rtmpdump(basic_args + ['-e'] + [[], ['-k', '1']][retval == 1]) + retval = run_rtmpdump(basic_args + ['-e'] + [[], ['-k', '1']][retval == RD_FAILED]) cursize = os.path.getsize(encodeFilename(tmpfilename)) - if prevsize == cursize and retval == 1: + if prevsize == cursize and retval == RD_FAILED: break # Some rtmp streams seem abort after ~ 99.8%. Don't complain for those - if prevsize == cursize and retval == 2 and cursize > 1024: + if prevsize == cursize and retval == RD_INCOMPLETE and cursize > 1024: self.to_screen(u'[rtmpdump] Could not download the whole video. This can happen for some advertisements.') - retval = 0 + retval = RD_SUCCESS break - if retval == 0 or (test and retval == 2): + if retval == RD_SUCCESS or (test and retval == RD_INCOMPLETE): fsize = os.path.getsize(encodeFilename(tmpfilename)) self.to_screen(u'[rtmpdump] %s bytes' % fsize) self.try_rename(tmpfilename, filename)