youtube-dl

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

commit 1cb6dcdbbe357da3abab9dcc1f2d57ff73f1835d
parent 3f514a353eea34760508dea6fc8cb6c8e00ec342
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed, 27 Aug 2014 02:07:11 +0200

[generic] Do not download images as videos by accident

Diffstat:
Myoutube_dl/extractor/generic.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py @@ -830,7 +830,8 @@ class GenericIE(InfoExtractor): if m_video_type is not None: def check_video(vurl): vpath = compat_urlparse.urlparse(vurl).path - return '.' in vpath and not vpath.endswith('.swf') + vext = determine_ext(vpath) + return '.' in vpath and vext not in ('swf', 'png', 'jpg') found = list(filter( check_video, re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage)))