diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-01-21 23:28:22 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-01-21 23:28:22 +0600 | 
| commit | 1e10d02fec559618f877e6694b6eeec53d59a65a (patch) | |
| tree | 97e1d0ab04dccd3f00bc3bb5cea76e5c80cd5439 /youtube_dl/extractor | |
| parent | 51290d8457aa8460382407796740063ced464481 (diff) | |
[hitbox] Skip subscribe only formats (Closes #8217)
Diffstat (limited to 'youtube_dl/extractor')
| -rw-r--r-- | youtube_dl/extractor/hitbox.py | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/hitbox.py b/youtube_dl/extractor/hitbox.py index 421f55bbe..ff797438d 100644 --- a/youtube_dl/extractor/hitbox.py +++ b/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:  | 
