summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-11 22:47:28 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-11 22:47:28 +0600
commit668db403f97eb1b50a3f54266db4bc274f1fa874 (patch)
treed7ff3bfa0b7ea45653e2207593029fb22b8f406d
parentb9ad101926b928445acf4a1ab48c24e17836b22c (diff)
downloadyoutube-dl-668db403f97eb1b50a3f54266db4bc274f1fa874.tar.gz
youtube-dl-668db403f97eb1b50a3f54266db4bc274f1fa874.tar.xz
youtube-dl-668db403f97eb1b50a3f54266db4bc274f1fa874.zip
[gorillavid] Add test for vidto.me and strip title
-rw-r--r--youtube_dl/extractor/gorillavid.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/youtube_dl/extractor/gorillavid.py b/youtube_dl/extractor/gorillavid.py
index d4fd0449c..8c982d8e9 100644
--- a/youtube_dl/extractor/gorillavid.py
+++ b/youtube_dl/extractor/gorillavid.py
@@ -76,6 +76,13 @@ class GorillaVidIE(InfoExtractor):
             'title': 'youtube-dl test video \'äBaW_jenozKc.mp4.mp4',
             'thumbnail': 're:http://.*\.jpg',
         }
+    }, {
+        'url': 'http://vidto.me/ku5glz52nqe1.html',
+        'info_dict': {
+            'id': 'ku5glz52nqe1',
+            'ext': 'mp4',
+            'title': 'test'
+        }
     }]
 
     def _real_extract(self, url):
@@ -104,12 +111,12 @@ class GorillaVidIE(InfoExtractor):
 
             webpage = self._download_webpage(req, video_id, 'Downloading video page')
 
-        title = self._search_regex(
+        title = (self._search_regex(
             [r'style="z-index: [0-9]+;">([^<]+)</span>',
              r'<td nowrap>([^<]+)</td>',
              r'>Watch (.+) ',
              r'<h2 class="video-page-head">([^<]+)</h2>'],
-            webpage, 'title', default=None) or self._og_search_title(webpage)
+            webpage, 'title', default=None) or self._og_search_title(webpage)).strip()
         video_url = self._search_regex(
             [r'file\s*:\s*["\'](http[^"\']+)["\'],',
              r'file_link\s*=\s*\'(https?:\/\/[0-9a-zA-z.\/\-_]+)'],