mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-18 05:05:17 +00:00
[sixplay] try to extract non drm protected manifests(closes #20849)
This commit is contained in:
parent
822b9d9cb0
commit
2309d6bf92
@ -65,7 +65,7 @@ class SixPlayIE(InfoExtractor):
|
|||||||
for asset in assets:
|
for asset in assets:
|
||||||
asset_url = asset.get('full_physical_path')
|
asset_url = asset.get('full_physical_path')
|
||||||
protocol = asset.get('protocol')
|
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
|
continue
|
||||||
urls.append(asset_url)
|
urls.append(asset_url)
|
||||||
container = asset.get('video_container')
|
container = asset.get('video_container')
|
||||||
@ -82,6 +82,7 @@ class SixPlayIE(InfoExtractor):
|
|||||||
if not urlh:
|
if not urlh:
|
||||||
continue
|
continue
|
||||||
asset_url = urlh.geturl()
|
asset_url = urlh.geturl()
|
||||||
|
asset_url = asset_url.replace('_drmnp.ism/', '_unpnp.ism/')
|
||||||
for i in range(3, 0, -1):
|
for i in range(3, 0, -1):
|
||||||
asset_url = asset_url = asset_url.replace('_sd1/', '_sd%d/' % i)
|
asset_url = asset_url = asset_url.replace('_sd1/', '_sd%d/' % i)
|
||||||
m3u8_formats = self._extract_m3u8_formats(
|
m3u8_formats = self._extract_m3u8_formats(
|
||||||
|
Loading…
Reference in New Issue
Block a user