diff options
| author | remitamine <remitamine@gmail.com> | 2016-03-13 15:24:02 +0100 | 
|---|---|---|
| committer | remitamine <remitamine@gmail.com> | 2016-03-13 15:24:02 +0100 | 
| commit | be24916a7f6af9540076a6bc39bc78a71d6264bb (patch) | |
| tree | 71a6d12a5d129f94b31e75e2af88dab0fa4f8ed4 /youtube_dl/downloader/rtsp.py | |
| parent | 2cb99ebbd0284f0de4bafd03179653bb9599b080 (diff) | |
[downloader/rtsp] Add rtsp and mms downloader
Diffstat (limited to 'youtube_dl/downloader/rtsp.py')
| -rw-r--r-- | youtube_dl/downloader/rtsp.py | 45 | 
1 files changed, 45 insertions, 0 deletions
diff --git a/youtube_dl/downloader/rtsp.py b/youtube_dl/downloader/rtsp.py new file mode 100644 index 000000000..3eb29526c --- /dev/null +++ b/youtube_dl/downloader/rtsp.py @@ -0,0 +1,45 @@ +from __future__ import unicode_literals + +import os +import subprocess + +from .common import FileDownloader +from ..utils import ( +    check_executable, +    encodeFilename, +) + + +class RtspFD(FileDownloader): +    def real_download(self, filename, info_dict): +        url = info_dict['url'] +        self.report_destination(filename) +        tmpfilename = self.temp_name(filename) + +        if check_executable('mplayer', ['-h']): +            args = [ +                'mplayer', '-really-quiet', '-vo', 'null', '-vc', 'dummy', +                '-dumpstream', '-dumpfile', tmpfilename, url] +        elif check_executable('mpv', ['-h']): +            args = [ +                'mpv', '-really-quiet', '--vo=null', '--stream-dump=' + tmpfilename, url] +        else: +            self.report_error('MMS or RTSP download detected but neither "mplayer" nor "mpv" could be run. Please install any.') +            return False + +        retval = subprocess.call(args) +        if retval == 0: +            fsize = os.path.getsize(encodeFilename(tmpfilename)) +            self.to_screen('\r[%s] %s bytes' % (args[0], fsize)) +            self.try_rename(tmpfilename, filename) +            self._hook_progress({ +                'downloaded_bytes': fsize, +                'total_bytes': fsize, +                'filename': filename, +                'status': 'finished', +            }) +            return True +        else: +            self.to_stderr('\n') +            self.report_error('%s exited with code %d' % (args[0], retval)) +            return False  | 
