logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 35c2dd48d9c61015627b00c2081b953fdea03f43
parent 3b2fd09596f4a1efd79c9e6193c3032adbd89da7
Author: Remita Amine <remitamine@gmail.com>
Date:   Sun,  9 Jun 2019 00:12:51 +0100

[cbs] improve DRM protected videos detection(closes #21339)

Diffstat:

Myoutube_dl/extractor/cbs.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/cbs.py b/youtube_dl/extractor/cbs.py @@ -69,7 +69,7 @@ class CBSIE(CBSBaseIE): last_e = None for item in items_data.findall('.//item'): asset_type = xpath_text(item, 'assetType') - if not asset_type or asset_type in asset_types or asset_type in ('HLS_FPS', 'DASH_CENC'): + if not asset_type or asset_type in asset_types or 'HLS_FPS' in asset_type or 'DASH_CENC' in asset_type: continue asset_types.append(asset_type) query = {