youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 975b9c9ab09306054d159d57085ed6ea1582b4de
parent 8ac73bdbe44e14007fb3e630eb70e2a395133480
Author: remitamine <remitamine@gmail.com>
Date:   Tue, 15 Mar 2016 10:06:53 +0100

[brightcove:new] detect m3u8 manifests by M2TS container

Diffstat:
Myoutube_dl/extractor/brightcove.py | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py @@ -475,9 +475,10 @@ class BrightcoveNewIE(InfoExtractor): formats = [] for source in json_data.get('sources', []): + container = source.get('container') source_type = source.get('type') src = source.get('src') - if source_type == 'application/x-mpegURL': + if source_type == 'application/x-mpegURL' or container == 'M2TS': if not src: continue formats.extend(self._extract_m3u8_formats( @@ -495,7 +496,7 @@ class BrightcoveNewIE(InfoExtractor): 'width': int_or_none(source.get('width')), 'height': height, 'filesize': int_or_none(source.get('size')), - 'container': source.get('container'), + 'container': container, 'vcodec': source.get('codec'), 'ext': source.get('container').lower(), }