2014-01-27 04:47:30 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-09-23 15:59:27 +00:00
|
|
|
from .common import FileDownloader
|
2015-01-24 00:38:48 +00:00
|
|
|
from .external import get_external_downloader
|
|
|
|
from .f4m import F4mFD
|
2013-09-23 15:59:27 +00:00
|
|
|
from .hls import HlsFD
|
2014-09-24 12:16:56 +00:00
|
|
|
from .hls import NativeHlsFD
|
2013-09-23 15:59:27 +00:00
|
|
|
from .http import HttpFD
|
|
|
|
from .mplayer import MplayerFD
|
|
|
|
from .rtmp import RtmpFD
|
|
|
|
|
|
|
|
from ..utils import (
|
2015-01-23 22:50:31 +00:00
|
|
|
determine_protocol,
|
2013-09-23 15:59:27 +00:00
|
|
|
)
|
|
|
|
|
2015-01-23 22:50:31 +00:00
|
|
|
PROTOCOL_MAP = {
|
|
|
|
'rtmp': RtmpFD,
|
|
|
|
'm3u8_native': NativeHlsFD,
|
|
|
|
'm3u8': HlsFD,
|
|
|
|
'mms': MplayerFD,
|
|
|
|
'rtsp': MplayerFD,
|
|
|
|
'f4m': F4mFD,
|
|
|
|
}
|
2014-01-25 11:02:43 +00:00
|
|
|
|
2015-01-23 22:50:31 +00:00
|
|
|
|
|
|
|
def get_suitable_downloader(info_dict, params={}):
|
2013-09-23 15:59:27 +00:00
|
|
|
"""Get the downloader class that can handle the info dict."""
|
2015-01-23 22:50:31 +00:00
|
|
|
protocol = determine_protocol(info_dict)
|
|
|
|
info_dict['protocol'] = protocol
|
|
|
|
|
2015-01-24 00:38:48 +00:00
|
|
|
external_downloader = params.get('external_downloader')
|
|
|
|
if external_downloader is not None:
|
|
|
|
ed = get_external_downloader(external_downloader)
|
|
|
|
if ed.supports(info_dict):
|
|
|
|
return ed
|
|
|
|
|
2015-02-17 11:09:12 +00:00
|
|
|
if protocol == 'm3u8' and params.get('hls_prefer_native'):
|
|
|
|
return NativeHlsFD
|
|
|
|
|
2015-01-23 22:50:31 +00:00
|
|
|
return PROTOCOL_MAP.get(protocol, HttpFD)
|
|
|
|
|
2014-11-23 21:25:12 +00:00
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
'get_suitable_downloader',
|
|
|
|
'FileDownloader',
|
|
|
|
]
|