diff --git a/Application/Exporter.py b/Application/Exporter.py index e97b2da..8dcbaf3 100644 --- a/Application/Exporter.py +++ b/Application/Exporter.py @@ -51,7 +51,7 @@ class Exporter: if layer.startFrame <= frameCount and layer.startFrame + len(layer.bounds) > frameCount: for (x, y, w, h) in layer.bounds[frameCount - layer.startFrame]: if x is None: - break + continue factor = videoReader.w / self.resizeWidth x = int(x * factor) y = int(y * factor)