aboutsummaryrefslogtreecommitdiff
path: root/filmstripper.py
diff options
context:
space:
mode:
authorSan Jacobs2020-03-01 22:00:01 +0100
committerSan Jacobs2020-03-01 22:00:01 +0100
commitc57ef58bbf225ee884e2d63e26b4fcabae0571b5 (patch)
treeb055a853bc4819ec27c9701f6c2ee04a0f90493e /filmstripper.py
parent3dcb9039869082c8cec406e199d721a0aea694d3 (diff)
downloadfilmstripper-c57ef58bbf225ee884e2d63e26b4fcabae0571b5.tar.gz
filmstripper-c57ef58bbf225ee884e2d63e26b4fcabae0571b5.tar.bz2
filmstripper-c57ef58bbf225ee884e2d63e26b4fcabae0571b5.zip
Added prints during processing
Diffstat (limited to 'filmstripper.py')
-rw-r--r--filmstripper.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/filmstripper.py b/filmstripper.py
index 1b2d2c8..3609295 100644
--- a/filmstripper.py
+++ b/filmstripper.py
@@ -145,6 +145,8 @@ for eachFile in fileList:
extendedStrip = filmstrip.crop(box=(0, 0, filmstrip.width+widthAdd, filmstrip.height+heightAdd))
extendedStrip.paste(eachImage, (extendedStrip.width-width, extendedStrip.height-height))
filmstrip = extendedStrip
+ print(eachFile+" added to filmstrip.")
-
+print("Exporting filmstrip to "+outputFile)
filmstrip.save(outputFile)
+print("Filmstrip exported.")