From 4c6729b2f02e8a8da986fddb93cd8acddb1dccee Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Wed, 4 May 2016 09:42:42 +0200 Subject: [PATCH] [mod] blank lines for lisibility --- prosopopee/prosopopee.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/prosopopee/prosopopee.py b/prosopopee/prosopopee.py index 944d330..7d4a75c 100644 --- a/prosopopee/prosopopee.py +++ b/prosopopee/prosopopee.py @@ -94,10 +94,14 @@ class Video(object): thumbnail_name = self.name.split(".") thumbnail_name[-2] += "-%s" % gm_geometry thumbnail_name = thumbnail_name[-2] + ".png" + source, target = os.path.join(self.base_dir, self.name), os.path.join(self.target_dir, thumbnail_name) + options = self.options.copy() options.update({"resize": gm_geometry}) + self.ffmpeg(source, target, options) + return thumbnail_name def __repr__(self):