Browse Source

[ceskatelevize] Prefix format ids

Sergey M․ 8 years ago
parent
commit
de4d378c0c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      youtube_dl/extractor/ceskatelevize.py

+ 2 - 2
youtube_dl/extractor/ceskatelevize.py

@@ -162,10 +162,10 @@ class CeskaTelevizeIE(InfoExtractor):
                         formats.extend(self._extract_m3u8_formats(
                             stream_url, playlist_id, 'mp4',
                             entry_protocol='m3u8' if is_live else 'm3u8_native',
-                            fatal=False))
+                            m3u8_id='hls', fatal=False))
                     else:
                         formats.extend(self._extract_mpd_formats(
-                            stream_url, playlist_id, fatal=False))
+                            stream_url, playlist_id, mpd_id='dash', fatal=False))
 
                 if user_agent and len(entries) == playlist_len:
                     entries[num]['formats'].extend(formats)