Browse Source

VeohIE: remove debug logging

rtmp_test
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
3a1375dacf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/veoh.py

+ 1
- 1
youtube_dl/extractor/veoh.py View File

@ -35,7 +35,7 @@ class VeohIE(InfoExtractor):
info = self._search_regex(r'videoDetailsJSON = \'({.*?})\';', webpage, 'info') info = self._search_regex(r'videoDetailsJSON = \'({.*?})\';', webpage, 'info')
info = json.loads(info) info = json.loads(info)
video_url = info.get('fullPreviewHashHighPath') or info.get('fullPreviewHashLowPath') video_url = info.get('fullPreviewHashHighPath') or info.get('fullPreviewHashLowPath')
self.to_screen(video_url)
return {'id': info['videoId'], return {'id': info['videoId'],
'title': info['title'], 'title': info['title'],
'ext': determine_ext(video_url), 'ext': determine_ext(video_url),


Loading…
Cancel
Save