mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-28 11:01:30 +00:00
[generic] Do not download images as videos by accident
This commit is contained in:
parent
3f514a353e
commit
1cb6dcdbbe
|
@ -830,7 +830,8 @@ def _playlist_from_matches(matches, getter, ie=None):
|
||||||
if m_video_type is not None:
|
if m_video_type is not None:
|
||||||
def check_video(vurl):
|
def check_video(vurl):
|
||||||
vpath = compat_urlparse.urlparse(vurl).path
|
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(
|
found = list(filter(
|
||||||
check_video,
|
check_video,
|
||||||
re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage)))
|
re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage)))
|
||||||
|
|
Loading…
Reference in a new issue