Browse Source

[sixplay] try to extract non drm protected manifests(closes #20849)

master
Remita Amine 5 years ago
parent
commit
2309d6bf92
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/sixplay.py

+ 2
- 1
youtube_dl/extractor/sixplay.py View File

@ -65,7 +65,7 @@ class SixPlayIE(InfoExtractor):
for asset in assets:
asset_url = asset.get('full_physical_path')
protocol = asset.get('protocol')
if not asset_url or protocol == 'primetime' or asset.get('type') == 'usp_hlsfp_h264' or asset_url in urls:
if not asset_url or (protocol == 'primetime' or asset.get('type') == 'usp_hlsfp_h264') and not ('_drmnp.ism/' in asset_url or '_unpnp.ism/' in asset_url) or asset_url in urls:
continue
urls.append(asset_url)
container = asset.get('video_container')
@ -82,6 +82,7 @@ class SixPlayIE(InfoExtractor):
if not urlh:
continue
asset_url = urlh.geturl()
asset_url = asset_url.replace('_drmnp.ism/', '_unpnp.ism/')
for i in range(3, 0, -1):
asset_url = asset_url = asset_url.replace('_sd1/', '_sd%d/' % i)
m3u8_formats = self._extract_m3u8_formats(


Loading…
Cancel
Save