diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-05-27 00:03:03 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-05-27 00:03:48 +0800 |
commit | 448bb5f333c6c4c8084e479e1035ff674e4f8fd4 (patch) | |
tree | 2d660eb11886ca5212becef3ac4dc2bf4002057c /youtube_dl/extractor/playwire.py | |
parent | 293c2556886c34d11919eb0af6760c52bd6a2632 (diff) |
[common] Fix non-bootstrapped support in f4m
Diffstat (limited to 'youtube_dl/extractor/playwire.py')
-rw-r--r-- | youtube_dl/extractor/playwire.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/playwire.py b/youtube_dl/extractor/playwire.py index 2ee5c5aa3..0bc743118 100644 --- a/youtube_dl/extractor/playwire.py +++ b/youtube_dl/extractor/playwire.py @@ -60,7 +60,7 @@ class PlaywireIE(InfoExtractor): thumbnail = content.get('poster') src = content['media']['f4m'] - formats = self._extract_f4m_formats(src, video_id, assume_f4mv2=True, m3u8_id='hls') + formats = self._extract_f4m_formats(src, video_id, m3u8_id='hls') for a_format in formats: if not dict_get(a_format, ['tbr', 'width', 'height']): a_format['quality'] = 1 if '-hd.' in a_format['url'] else 0 |