X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fveoh.py;h=00672c9e5f4bdb5f2c33112bdee4d97022b24e9f;hb=a27a2470cd79d44562eccbb683c52c561a78d202;hp=c1f8271f12f2e1747ee28618b59ff069dd02caad;hpb=16ea58cbda0b27d7b43d156092a518a55c69aac4;p=youtube-dl diff --git a/youtube_dl/extractor/veoh.py b/youtube_dl/extractor/veoh.py index c1f8271f1..00672c9e5 100644 --- a/youtube_dl/extractor/veoh.py +++ b/youtube_dl/extractor/veoh.py @@ -35,7 +35,7 @@ class VeohIE(InfoExtractor): info = self._search_regex(r'videoDetailsJSON = \'({.*?})\';', webpage, 'info') info = json.loads(info) video_url = info.get('fullPreviewHashHighPath') or info.get('fullPreviewHashLowPath') - self.to_screen(video_url) + return {'id': info['videoId'], 'title': info['title'], 'ext': determine_ext(video_url),