diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-01 15:49:11 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-01 15:49:11 +0600 |
commit | 999079b4543b4cd5e71a235865fbfefd349eb064 (patch) | |
tree | 66efcd2ac5336d1de492c35503476d63faac66c7 | |
parent | 8a06999ba0f9c948f8d2a1ef89c73eedbfb09cfb (diff) |
[eitb] Improve hds extraction
-rw-r--r-- | youtube_dl/extractor/eitb.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/extractor/eitb.py b/youtube_dl/extractor/eitb.py index 0de8d3dc6..357a2196c 100644 --- a/youtube_dl/extractor/eitb.py +++ b/youtube_dl/extractor/eitb.py @@ -70,10 +70,11 @@ class EitbIE(InfoExtractor): if m3u8_formats: formats.extend(m3u8_formats) - hds_url = media.get('HDS_SURL').replace('euskalsvod', 'euskalvod') + hds_url = media.get('HDS_SURL') if hds_url: f4m_formats = self._extract_f4m_formats( - '%s?hdcore=3.7.0' % hds_url, video_id, f4m_id='hds', fatal=False) + '%s?hdcore=3.7.0' % hds_url.replace('euskalsvod', 'euskalvod'), + video_id, f4m_id='hds', fatal=False) if f4m_formats: formats.extend(f4m_formats) |