[pandatv] Add support for https URLs
authorXuan Hu (Sean) <i+github@huxuan.org>
Mon, 26 Jun 2017 15:00:31 +0000 (23:00 +0800)
committerSergey M <dstftw@gmail.com>
Mon, 26 Jun 2017 15:00:31 +0000 (22:00 +0700)
youtube_dl/extractor/pandatv.py

index 133cc9b884c656b9f1ab66c0af7f446cd68a7fbd..a5ed494493c6e8994cb354272de737c4274dba5e 100644 (file)
@@ -10,13 +10,13 @@ from ..utils import (
 
 class PandaTVIE(InfoExtractor):
     IE_DESC = '熊猫TV'
-    _VALID_URL = r'http://(?:www\.)?panda\.tv/(?P<id>[0-9]+)'
-    _TEST = {
-        'url': 'http://www.panda.tv/10091',
+    _VALID_URL = r'https?://(?:www\.)?panda\.tv/(?P<id>[0-9]+)'
+    _TESTS = [{
+        'url': 'http://www.panda.tv/66666',
         'info_dict': {
-            'id': '10091',
+            'id': '66666',
             'title': 're:.+',
-            'uploader': 'å\9b\9aå¾\92',
+            'uploader': 'å\88\98æ\9d\80鸡',
             'ext': 'flv',
             'is_live': True,
         },
@@ -24,7 +24,10 @@ class PandaTVIE(InfoExtractor):
             'skip_download': True,
         },
         'skip': 'Live stream is offline',
-    }
+    }, {
+        'url': 'https://www.panda.tv/66666',
+        'only_matching': True,
+    }]
 
     def _real_extract(self, url):
         video_id = self._match_id(url)