aboutsummaryrefslogtreecommitdiff
path: root/src/video_thread.py
diff options
context:
space:
mode:
authortassaron2017-07-06 12:40:03 -0400
committertassaron2017-07-06 12:40:03 -0400
commit9986b1c829caa12bcea120bb37ebb57ab5e0e874 (patch)
tree69de06d5e14d41f06e471bf3716be7d23d116c0c /src/video_thread.py
parent3de45b3629aa994e986245b6af2ef8016818a8e2 (diff)
image options to mirror & saturate colours
and some friendly docstrings
Diffstat (limited to 'src/video_thread.py')
-rw-r--r--src/video_thread.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_thread.py b/src/video_thread.py
index aed4d60..d35a37a 100644
--- a/src/video_thread.py
+++ b/src/video_thread.py
@@ -1,3 +1,10 @@
+'''
+ Thread created to export a video. It has a slot to begin export using
+ an input file, output path, and component list. During export multiple
+ threads are created to render the video as quickly as possible. Signals
+ are emitted to update MainWindow's progress bar, detail text, and preview.
+ Export can be cancelled with cancel() + reset()
+'''
from PyQt5 import QtCore, QtGui, uic
from PyQt5.QtCore import pyqtSignal, pyqtSlot
from PIL import Image, ImageDraw, ImageFont