youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 3a1375dacf534e58e7e2e8ee3f84e9fb8d0f4ea4
parent 41bece30b4f9135357251a822c6dea1244e51814
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Tue,  9 Jul 2013 11:11:55 +0200

VeohIE: remove debug logging

Diffstat:
Myoutube_dl/extractor/veoh.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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),