Browse Source

[rtbf] Fix extraction (closes #7133)

Jaime Marquínez Ferrándiz 10 years ago
parent
commit
57d1db8dd0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/rtbf.py

+ 1 - 1
youtube_dl/extractor/rtbf.py

@@ -36,7 +36,7 @@ class RTBFIE(InfoExtractor):
 
 
         data = self._parse_json(
         data = self._parse_json(
             unescapeHTML(self._search_regex(
             unescapeHTML(self._search_regex(
-                r'data-video="([^"]+)"', webpage, 'data video')),
+                r'data-media="([^"]+)"', webpage, 'data video')),
             video_id)
             video_id)
 
 
         if data.get('provider').lower() == 'youtube':
         if data.get('provider').lower() == 'youtube':