ソースを参照

[itv] Use native hls

Sergey M․ 8 年 前
コミット
f67177cae8
1 ファイル変更3 行追加1 行削除
  1. 3 1
      youtube_dl/extractor/itv.py

+ 3 - 1
youtube_dl/extractor/itv.py

@@ -174,7 +174,9 @@ class ITVIE(InfoExtractor):
                         href = ios_base_url + href
                         href = ios_base_url + href
                     ext = determine_ext(href)
                     ext = determine_ext(href)
                     if ext == 'm3u8':
                     if ext == 'm3u8':
-                        formats.extend(self._extract_m3u8_formats(href, video_id, 'mp4', m3u8_id='hls', fatal=False))
+                        formats.extend(self._extract_m3u8_formats(
+                            href, video_id, 'mp4', entry_protocol='m3u8_native',
+                            m3u8_id='hls', fatal=False))
                     else:
                     else:
                         formats.append({
                         formats.append({
                             'url': href,
                             'url': href,