[extractor/common] Change the default m3u8 protocol in HTML5

Helper functions should have consistent default values
This commit is contained in:
Yen Chi Hsuan 2016-08-22 02:18:46 +08:00
parent d0fa172e5f
commit ad120ae1c5
No known key found for this signature in database
GPG key ID: 3FDDD575826C5C30
4 changed files with 8 additions and 5 deletions

View file

@ -1695,7 +1695,7 @@ class InfoExtractor(object):
self.report_warning('Unknown MIME type %s in DASH manifest' % mime_type)
return formats
def _parse_html5_media_entries(self, base_url, webpage, video_id, m3u8_id=None):
def _parse_html5_media_entries(self, base_url, webpage, video_id, m3u8_id=None, m3u8_entry_protocol='m3u8'):
def absolute_url(video_url):
return compat_urlparse.urljoin(base_url, video_url)
@ -1715,8 +1715,8 @@ class InfoExtractor(object):
if determine_ext(full_url) == 'm3u8':
is_plain_url = False
formats = self._extract_m3u8_formats(
full_url, video_id, ext='mp4', entry_protocol='m3u8_native',
m3u8_id=m3u8_id)
full_url, video_id, ext='mp4',
entry_protocol=m3u8_entry_protocol, m3u8_id=m3u8_id)
else:
is_plain_url = True
formats = [{