2
0
mirror of https://github.com/blackjack4494/yt-dlc.git synced 2025-09-15 22:52:33 -06:00

VeohIE: remove debug logging

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-07-09 11:11:55 +02:00
parent 41bece30b4
commit 3a1375dacf

View File

@ -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),