浏览代码

[acast] fix extraction(#9117)

remitamine 9 年之前
父节点
当前提交
9a32e80477
共有 1 个文件被更改,包括 1 次插入7 次删除
  1. 1 7
      youtube_dl/extractor/acast.py

+ 1 - 7
youtube_dl/extractor/acast.py

@@ -26,13 +26,7 @@ class ACastIE(InfoExtractor):
 
 
     def _real_extract(self, url):
     def _real_extract(self, url):
         channel, display_id = re.match(self._VALID_URL, url).groups()
         channel, display_id = re.match(self._VALID_URL, url).groups()
-
-        embed_page = self._download_webpage(
-            re.sub('(?:www\.)?acast\.com', 'embedcdn.acast.com', url), display_id)
-        cast_data = self._parse_json(self._search_regex(
-            r'window\[\'acast/queries\'\]\s*=\s*([^;]+);', embed_page, 'acast data'),
-            display_id)['GetAcast/%s/%s' % (channel, display_id)]
-
+        cast_data = self._download_json('https://embed.acast.com/api/acasts/%s/%s' % (channel, display_id), display_id)
         return {
         return {
             'id': compat_str(cast_data['id']),
             'id': compat_str(cast_data['id']),
             'display_id': display_id,
             'display_id': display_id,