1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-16 01:59:33 +00:00

[hitbox] Skip subscribe only formats (Closes #8217)

This commit is contained in:
Sergey M․ 2016-01-21 23:28:22 +06:00
parent 51290d8457
commit 1e10d02fec

View file

@ -159,6 +159,9 @@ class HitboxLiveIE(HitboxIE):
cdns = player_config.get('cdns')
servers = []
for cdn in cdns:
# Subscribe URLs are not playable
if cdn.get('rtmpSubscribe') is True:
continue
base_url = cdn.get('netConnectionUrl')
host = re.search('.+\.([^\.]+\.[^\./]+)/.+', base_url).group(1)
if base_url not in servers: