[vsco] implement 'videos' option

This commit is contained in:
Mike Fährmann
2019-12-19 17:20:51 +01:00
parent 95c90722ee
commit bf658fd84b
3 changed files with 16 additions and 0 deletions

View File

@@ -29,11 +29,14 @@ class VscoExtractor(Extractor):
self.user = match.group(1).lower()
def items(self):
videos = self.config("videos", True)
yield Message.Version, 1
yield Message.Directory, {"user": self.user}
for img in self.images():
if img["is_video"]:
if not videos:
continue
url = "https://" + img["video_url"]
else:
base = img["responsive_url"].partition("/")[2]