Browse Source

[cbc:watch] extract audio codec for audion only formats(fixes #11893)

Remita Amine 8 years ago
parent
commit
81aeafeb44
1 changed files with 6 additions and 0 deletions
  1. 6 0
      youtube_dl/extractor/cbc.py

+ 6 - 0
youtube_dl/extractor/cbc.py

@@ -296,6 +296,12 @@ class CBCWatchVideoIE(CBCWatchBaseIE):
         formats = self._extract_m3u8_formats(re.sub(r'/([^/]+)/[^/?]+\.m3u8', r'/\1/\1.m3u8', m3u8_url), video_id, 'mp4', fatal=False)
         if len(formats) < 2:
             formats = self._extract_m3u8_formats(m3u8_url, video_id, 'mp4')
+        for f in formats:
+            format_id = f.get('format_id')
+            if format_id.startswith('AAC'):
+                f['acodec'] = 'aac'
+            elif format_id.startswith('AC3'):
+                f['acodec'] = 'ac-3'
         self._sort_formats(formats)
 
         info = {