[pandatv] Add support for https URLs

master
Xuan Hu (Sean) 7 years ago committed by Sergey M
parent 136503e302
commit 35544690e4

@ -10,13 +10,13 @@ from ..utils import (
class PandaTVIE(InfoExtractor): class PandaTVIE(InfoExtractor):
IE_DESC = '熊猫TV' IE_DESC = '熊猫TV'
_VALID_URL = r'http://(?:www\.)?panda\.tv/(?P<id>[0-9]+)' _VALID_URL = r'https?://(?:www\.)?panda\.tv/(?P<id>[0-9]+)'
_TEST = { _TESTS = [{
'url': 'http://www.panda.tv/10091', 'url': 'http://www.panda.tv/66666',
'info_dict': { 'info_dict': {
'id': '10091', 'id': '66666',
'title': 're:.+', 'title': 're:.+',
'uploader': '囚徒', 'uploader': '刘杀鸡',
'ext': 'flv', 'ext': 'flv',
'is_live': True, 'is_live': True,
}, },
@ -24,7 +24,10 @@ class PandaTVIE(InfoExtractor):
'skip_download': True, 'skip_download': True,
}, },
'skip': 'Live stream is offline', 'skip': 'Live stream is offline',
} }, {
'url': 'https://www.panda.tv/66666',
'only_matching': True,
}]
def _real_extract(self, url): def _real_extract(self, url):
video_id = self._match_id(url) video_id = self._match_id(url)

Loading…
Cancel
Save