diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-08-22 02:18:46 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-08-22 02:26:07 +0800 |
commit | ad120ae1c57fe3ff0c7f5559d280cb8230a2b38c (patch) | |
tree | 32f7f7cf02a4527c54756d937ceda99ade3d9038 /youtube_dl/extractor/charlierose.py | |
parent | d0fa172e5fc1d676834252dcd395ec495b20b0bc (diff) |
[extractor/common] Change the default m3u8 protocol in HTML5
Helper functions should have consistent default values
Diffstat (limited to 'youtube_dl/extractor/charlierose.py')
-rw-r--r-- | youtube_dl/extractor/charlierose.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/charlierose.py b/youtube_dl/extractor/charlierose.py index 817f7128f..4bf2cf7b0 100644 --- a/youtube_dl/extractor/charlierose.py +++ b/youtube_dl/extractor/charlierose.py @@ -35,7 +35,8 @@ class CharlieRoseIE(InfoExtractor): title = remove_end(self._og_search_title(webpage), ' - Charlie Rose') info_dict = self._parse_html5_media_entries( - self._PLAYER_BASE % video_id, webpage, video_id)[0] + self._PLAYER_BASE % video_id, webpage, video_id, + m3u8_entry_protocol='m3u8_native')[0] self._sort_formats(info_dict['formats']) self._remove_duplicate_formats(info_dict['formats']) |