aboutsummaryrefslogtreecommitdiff
path: root/src/components/sound.py
diff options
context:
space:
mode:
authortassaron2017-07-27 17:49:08 -0400
committertassaron2017-07-27 17:49:08 -0400
commitde1324a6a75eb2a9f97d8a6b416077cfc73b2bc9 (patch)
tree2aebc32702f193280f6332a7aa6c3f21e4390ca0 /src/components/sound.py
parent4329b0e947471ced7ca0b3460a5f40e2703117e9 (diff)
fixed video component eating stdout
+ made height/width into properties to simplify render methods
Diffstat (limited to 'src/components/sound.py')
-rw-r--r--src/components/sound.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/components/sound.py b/src/components/sound.py
index fcd9e4e..aff43d3 100644
--- a/src/components/sound.py
+++ b/src/components/sound.py
@@ -21,11 +21,6 @@ class Component(Component):
'sound': None,
})
- def previewRender(self, previewWorker):
- width = int(self.settings.value('outputWidth'))
- height = int(self.settings.value('outputHeight'))
- return BlankFrame(width, height)
-
def preFrameRender(self, **kwargs):
pass
@@ -63,11 +58,6 @@ class Component(Component):
self.page.lineEdit_sound.setText(filename)
self.update()
- def frameRender(self, layerNo, frameNo):
- width = int(self.settings.value('outputWidth'))
- height = int(self.settings.value('outputHeight'))
- return BlankFrame(width, height)
-
def commandHelp(self):
print('Path to audio file:\n path=/filepath/to/sound.ogg')