Browse Source

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

master
Sergey M․ 9 years ago
parent
commit
1e10d02fec
1 changed files with 3 additions and 0 deletions
  1. 3
      youtube_dl/extractor/hitbox.py

3
youtube_dl/extractor/hitbox.py

@ -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:

Loading…
Cancel
Save