瀏覽代碼

[syfy,bravotv] restrict drupal settings regex

Remita Amine 9 年之前
父節點
當前提交
ccb6570e9e
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      youtube_dl/extractor/bravotv.py
  2. 1 1
      youtube_dl/extractor/syfy.py

+ 1 - 1
youtube_dl/extractor/bravotv.py

@@ -32,7 +32,7 @@ class BravoTVIE(AdobePassIE):
         display_id = self._match_id(url)
         webpage = self._download_webpage(url, display_id)
         settings = self._parse_json(self._search_regex(
-            r'jQuery\.extend\([^,]+,\s*({.+})\);', webpage, 'drupal settings'),
+            r'jQuery\.extend\(Drupal\.settings\s*,\s*({.+?})\);', webpage, 'drupal settings'),
             display_id)
         info = {}
         query = {

+ 1 - 1
youtube_dl/extractor/syfy.py

@@ -31,7 +31,7 @@ class SyfyIE(AdobePassIE):
         display_id = self._match_id(url)
         webpage = self._download_webpage(url, display_id)
         syfy_mpx = list(self._parse_json(self._search_regex(
-            r'jQuery\.extend\([^,]+,\s*({.+})\);', webpage, 'drupal settings'),
+            r'jQuery\.extend\(Drupal\.settings\s*,\s*({.+?})\);', webpage, 'drupal settings'),
             display_id)['syfy']['syfy_mpx'].values())[0]
         video_id = syfy_mpx['mpxGUID']
         title = syfy_mpx['episodeTitle']