diff options
author | Kagami Hiiragi <kagami@genshiken.org> | 2016-06-07 14:39:21 +0300 |
---|---|---|
committer | Kagami Hiiragi <kagami@genshiken.org> | 2016-06-07 17:12:13 +0300 |
commit | 345dec937fcc2b9ae106e91f4c01568c8c7e41f8 (patch) | |
tree | db5394dcb9cd216f4e04d5cce0bee5cd24b0e4e3 /youtube_dl | |
parent | e67f6880257068c395d38e24a5e13f69902e1e4c (diff) |
[vlive] Acknowledge vlive+ streams statuses
Same as common statuses just with "PRODUCT_" prefix:
PRODUCE_LIVE_END, PRODUCT_COMING_SOON, etc.
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/vlive.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/vlive.py b/youtube_dl/extractor/vlive.py index 147f52d45..8d671cca7 100644 --- a/youtube_dl/extractor/vlive.py +++ b/youtube_dl/extractor/vlive.py @@ -9,6 +9,7 @@ from ..utils import ( ExtractorError, float_or_none, int_or_none, + remove_start, ) from ..compat import compat_urllib_parse_urlencode @@ -39,6 +40,7 @@ class VLiveIE(InfoExtractor): webpage, 'video params') status, _, _, live_params, long_video_id, key = re.split( r'"\s*,\s*"', video_params)[2:8] + status = remove_start(status, 'PRODUCT_') if status == 'LIVE_ON_AIR' or status == 'BIG_EVENT_ON_AIR': live_params = self._parse_json('"%s"' % live_params, video_id) |