aboutsummaryrefslogtreecommitdiff
path: root/src/video_thread.py
diff options
context:
space:
mode:
authortassaron2017-07-13 14:46:22 -0400
committertassaron2017-07-13 14:46:22 -0400
commitb7931572a73d408dceecc4b17b784a0338e0e35b (patch)
tree7f55cf08da0094698d53074c72f474206026d464 /src/video_thread.py
parent8811b699a9c2d6b78af1e2a332d3031aef73aec4 (diff)
added option to include audio from Video components
Diffstat (limited to 'src/video_thread.py')
-rw-r--r--src/video_thread.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_thread.py b/src/video_thread.py
index f736013..bfb0cc4 100644
--- a/src/video_thread.py
+++ b/src/video_thread.py
@@ -175,8 +175,8 @@ class Worker(QtCore.QObject):
self.staticComponents[compNo] = None
ffmpegCommand = self.core.createFfmpegCommand(inputFile, outputFile)
- print('###### FFMPEG COMMAND ######\n %s' % " ".join(ffmpegCommand))
- print('###### -------------- ######')
+ print('###### FFMPEG COMMAND ######\n%s' % " ".join(ffmpegCommand))
+ print('############################')
self.out_pipe = openPipe(
ffmpegCommand, stdin=sp.PIPE, stdout=sys.stdout, stderr=sys.stdout
)