Browse Source

title extraction condition less restrictive

MikeCol 11 years ago
parent
commit
9c7b79acd9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/extremetube.py

+ 1 - 1
youtube_dl/extractor/extremetube.py

@@ -37,7 +37,7 @@ class ExtremeTubeIE(InfoExtractor):
         webpage = self._download_webpage(req, video_id)
 
         video_title = self._html_search_regex(
-            r'<h1 [^>]*?title="([^"]+)"[^>]*>\1<', webpage, 'title')
+            r'<h1 [^>]*?title="([^"]+)"[^>]*>', webpage, 'title')
         uploader = self._html_search_regex(
             r'>Posted by:(?=<)(?:\s|<[^>]*>)*(.+?)\|', webpage, 'uploader',
             fatal=False)