youtube-dl

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

commit 522d6b5c961f584055463f8c69de864ec075083b
parent 3c92fd1cd5b5ced11f03ebe64104457c21cd69ec
Author: Remita Amine <remitamine@gmail.com>
Date:   Mon, 16 Apr 2018 07:48:36 +0100

[cbs] skip DRM asset types(fixes #16104)

Diffstat:
Myoutube_dl/extractor/cbs.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/cbs.py b/youtube_dl/extractor/cbs.py @@ -65,7 +65,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: + if not asset_type or asset_type in asset_types or asset_type in ('HLS_FPS', 'DASH_CENC'): continue asset_types.append(asset_type) query = {