Merge pull request #9720 from Kagami/vlive-new-statuses
authorSergey M <dstftw@gmail.com>
Tue, 7 Jun 2016 14:22:53 +0000 (21:22 +0700)
committerSergey M <dstftw@gmail.com>
Tue, 7 Jun 2016 14:22:53 +0000 (21:22 +0700)
[vlive] Acknowledge vlive+ streams statuses

youtube_dl/extractor/vlive.py

index 147f52d458f9e9660a77f40cc6aac15ef4b2f0d7..8d671cca767d4592a5428f7d3ad855e952df5353 100644 (file)
@@ -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)