diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-16 21:41:22 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-16 21:41:22 +0800 |
commit | 9154c87fc4583b7bad2ee851b08f17c57df755cc (patch) | |
tree | 244111fbfe3fa1bb7205979a171cf763249964d5 | |
parent | ef0e4e7bc03669fbef0cb7923a21637a71993dad (diff) |
[huffpost] Fix a typo
-rw-r--r-- | youtube_dl/extractor/huffpost.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/huffpost.py b/youtube_dl/extractor/huffpost.py index 1dc5701b2..059073749 100644 --- a/youtube_dl/extractor/huffpost.py +++ b/youtube_dl/extractor/huffpost.py @@ -69,7 +69,7 @@ class HuffPostIE(InfoExtractor): formats.extend(self._extract_m3u8_formats( url, video_id, ext='mp4', m3u8_id='hls', fatal=False)) elif ext == 'f4m': - formats.extend(self._extract_f4m_formatsa( + formats.extend(self._extract_f4m_formats( url + '?hdcore=2.9.5', video_id, f4m_id='hds', fatal=False)) else: formats.append({ |