aboutsummaryrefslogtreecommitdiff
path: root/src/components/video.py
diff options
context:
space:
mode:
authortassaron2017-07-25 17:44:59 -0400
committertassaron2017-07-25 17:44:59 -0400
commit661526b0739115594fda4c0e876398cdc940fbe1 (patch)
treec5bfdf136bd7f72abed54d3bb83d831bcfc43555 /src/components/video.py
parentd25dee6afc0cc72f477b577623079b4d644957a8 (diff)
repeated errors don't cause repeated windows
Diffstat (limited to 'src/components/video.py')
-rw-r--r--src/components/video.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/video.py b/src/components/video.py
index 153fc4d..6b0a04a 100644
--- a/src/components/video.py
+++ b/src/components/video.py
@@ -6,8 +6,7 @@ import subprocess
import threading
from queue import PriorityQueue
-from core import Core
-from component import Component, ComponentError
+from component import Component
from toolkit.frame import BlankFrame
from toolkit.ffmpeg import testAudioStream
from toolkit import openPipe, checkOutput
@@ -155,6 +154,7 @@ class Component(Component):
return frame
def properties(self):
+ # TODO: Disallow selecting the same video you're exporting to
props = []
if not self.videoPath or self.badVideo \
or not os.path.exists(self.videoPath):