title extraction condition less restrictive
authorMikeCol <MikeCol@gmx.net>
Sat, 31 May 2014 16:31:39 +0000 (18:31 +0200)
committerMikeCol <MikeCol@gmx.net>
Sat, 31 May 2014 16:31:39 +0000 (18:31 +0200)
youtube_dl/extractor/extremetube.py

index ff7c0cd3e6595740f1c98b834f1d2b818d04d25c..14a196ffc63336ae7d016b035cfb28cc7f7d28a0 100644 (file)
@@ -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)