mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-22 08:34:32 +01:00
[hitbox] Skip subscribe only formats (Closes #8217)
This commit is contained in:
parent
51290d8457
commit
1e10d02fec
@ -159,6 +159,9 @@ class HitboxLiveIE(HitboxIE):
|
|||||||
cdns = player_config.get('cdns')
|
cdns = player_config.get('cdns')
|
||||||
servers = []
|
servers = []
|
||||||
for cdn in cdns:
|
for cdn in cdns:
|
||||||
|
# Subscribe URLs are not playable
|
||||||
|
if cdn.get('rtmpSubscribe') is True:
|
||||||
|
continue
|
||||||
base_url = cdn.get('netConnectionUrl')
|
base_url = cdn.get('netConnectionUrl')
|
||||||
host = re.search('.+\.([^\.]+\.[^\./]+)/.+', base_url).group(1)
|
host = re.search('.+\.([^\.]+\.[^\./]+)/.+', base_url).group(1)
|
||||||
if base_url not in servers:
|
if base_url not in servers:
|
||||||
|
Loading…
Reference in New Issue
Block a user