summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-07-17 18:10:16 +0700
committerSergey M․ <dstftw@gmail.com>2016-07-17 18:10:16 +0700
commit246080d37878c17e481ec112fd12df52859f3c58 (patch)
tree34feb9fac0a72629facbe8195117c3f49e32f0f6
parentb1ea6802703f6886b3be2a9975f598fa49fc6d3e (diff)
downloadyoutube-dl-246080d37878c17e481ec112fd12df52859f3c58.tar.gz
youtube-dl-246080d37878c17e481ec112fd12df52859f3c58.tar.xz
youtube-dl-246080d37878c17e481ec112fd12df52859f3c58.zip
[viki] Override m3u8 formats acodec
-rw-r--r--youtube_dl/extractor/viki.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/youtube_dl/extractor/viki.py b/youtube_dl/extractor/viki.py
index efa15e0b6..fe2bb9df4 100644
--- a/youtube_dl/extractor/viki.py
+++ b/youtube_dl/extractor/viki.py
@@ -281,9 +281,16 @@ class VikiIE(VikiBaseIE):
                 r'^(\d+)[pP]$', format_id, 'height', default=None))
             for protocol, format_dict in stream_dict.items():
                 if format_id == 'm3u8':
-                    formats.extend(self._extract_m3u8_formats(
-                        format_dict['url'], video_id, 'mp4', 'm3u8_native',
-                        m3u8_id='m3u8-%s' % protocol, fatal=False))
+                    m3u8_formats = self._extract_m3u8_formats(
+                        format_dict['url'], video_id, 'mp4',
+                        entry_protocol='m3u8_native',
+                        m3u8_id='m3u8-%s' % protocol, fatal=False)
+                    # Despite CODECS metadata in m3u8 all video-only formats
+                    # are actually video+audio
+                    for f in m3u8_formats:
+                        if f.get('acodec') == 'none' and f.get('vcodec') != 'none':
+                            f['acodec'] = None
+                    formats.extend(m3u8_formats)
                 else:
                     formats.append({
                         'url': format_dict['url'],