Browse Source

[yahoo] Add improve content id regexes (Closes #8290)

Sergey M․ 9 years ago
parent
commit
e87d98b0dd
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/extractor/yahoo.py

+ 2 - 1
youtube_dl/extractor/yahoo.py

@@ -221,7 +221,8 @@ class YahooIE(InfoExtractor):
                     r'root\.App\.Cache\.context\.videoCache\.curVideo = \{"([^"]+)"',
                     r'"first_videoid"\s*:\s*"([^"]+)"',
                     r'%s[^}]*"ccm_id"\s*:\s*"([^"]+)"' % re.escape(page_id),
-                    r'yahoo:\/\/article\/view\?uuid=([^&]+)&',
+                    r'<article[^>]data-uuid=["\']([^"\']+)',
+                    r'yahoo://article/view\?.*\buuid=([^&"\']+)',
                 ]
                 video_id = self._search_regex(
                     CONTENT_ID_REGEXES, webpage, 'content ID')