Pass the 'download' argument to 'process_video_result' (fixes #1769)
[youtube-dl] / youtube_dl / extractor / xtube.py
index 7d06a7021181538f0feb8fe0c97a3dc2614b3caf..03ad88bededd60a7d8462bb85e5a8cb23db381b2 100644 (file)
@@ -16,6 +16,7 @@ class XTubeIE(InfoExtractor):
         u'md5': u'092fbdd3cbe292c920ef6fc6a8a9cdab',
         u'info_dict': {
             u"title": u"strange erotica",
+            u"description": u"surreal gay themed erotica...almost an ET kind of thing",
             u"uploader": u"greenshowers",
             u"age_limit": 18,
         }
@@ -34,12 +35,12 @@ class XTubeIE(InfoExtractor):
         video_uploader = self._html_search_regex(r'so_s\.addVariable\("owner_u", "([^"]+)', webpage, u'uploader', fatal=False)
         video_description = self._html_search_regex(r'<p class="video_description">([^<]+)', webpage, u'description', default=None)
         video_url= self._html_search_regex(r'var videoMp4 = "([^"]+)', webpage, u'video_url').replace('\\/', '/')
-        path = compat_urllib_parse_urlparse( video_url ).path
-        extension = os.path.splitext( path )[1][1:]
+        path = compat_urllib_parse_urlparse(video_url).path
+        extension = os.path.splitext(path)[1][1:]
         format = path.split('/')[5].split('_')[:2]
         format[0] += 'p'
         format[1] += 'k'
-        format = "-".join( format )
+        format = "-".join(format)
 
         return {
             'id': video_id,