X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fveoh.py;h=00672c9e5f4bdb5f2c33112bdee4d97022b24e9f;hb=5d9b75051a11e2de7f24c2759a81e26a599b080f;hp=c1f8271f12f2e1747ee28618b59ff069dd02caad;hpb=99e350d902d07d3cd9a800bf7c58b76c12ca6e6e;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),