summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-09-06 07:30:16 +0600
committerSergey M․ <dstftw@gmail.com>2015-09-06 07:30:16 +0600
commitb3e64671cc7a33386c2e484da8eddcc694d85302 (patch)
tree05e778af514ec73d40511d9140f44ef514f0e3df
parent4abe2144994dce59b823d2bc7ea3ddc90d68b2c8 (diff)
downloadyoutube-dl-b3e64671cc7a33386c2e484da8eddcc694d85302.tar.gz
youtube-dl-b3e64671cc7a33386c2e484da8eddcc694d85302.tar.xz
youtube-dl-b3e64671cc7a33386c2e484da8eddcc694d85302.zip
[gorillavid] Improve title
-rw-r--r--youtube_dl/extractor/gorillavid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/gorillavid.py b/youtube_dl/extractor/gorillavid.py
index 1a42de2d5..afdf4e4c4 100644
--- a/youtube_dl/extractor/gorillavid.py
+++ b/youtube_dl/extractor/gorillavid.py
@@ -97,7 +97,7 @@ class GorillaVidIE(InfoExtractor):
             webpage = self._download_webpage(req, video_id, 'Downloading video page')
 
         title = self._search_regex(
-            [r'style="z-index: [0-9]+;">([^<]+)</span>', r'>Watch (.+) '],
+            [r'style="z-index: [0-9]+;">([^<]+)</span>', r'<td nowrap>([^<]+)</td>', r'>Watch (.+) '],
             webpage, 'title', default=None) or self._og_search_title(webpage)
         video_url = self._search_regex(
             r'file\s*:\s*["\'](http[^"\']+)["\'],', webpage, 'file url')