diff options
| author | tassaron | 2022-04-21 01:05:55 -0400 |
|---|---|---|
| committer | tassaron | 2022-04-21 01:05:55 -0400 |
| commit | 1c9f5e4ae685a957a29100e7ade1ac365149c218 (patch) | |
| tree | 80d51ddb665cc5db9b145aa6e4aff5fe5acb45af /src/video_thread.py | |
| parent | a0291e3fcde739355669e0ca40487f0eb8ee82e4 (diff) | |
fix crash if ffmpeg is not installed (tested on windows 11)
Diffstat (limited to 'src/video_thread.py')
| -rw-r--r-- | src/video_thread.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/video_thread.py b/src/video_thread.py index 91ebe93..4a07fb2 100644 --- a/src/video_thread.py +++ b/src/video_thread.py @@ -244,9 +244,15 @@ class Worker(QtCore.QObject): ) self.staticComponents[compNo] = None - ffmpegCommand = createFfmpegCommand( - self.inputFile, self.outputFile, self.components, duration - ) + try: + ffmpegCommand = createFfmpegCommand( + self.inputFile, self.outputFile, self.components, duration + ) + except sp.CalledProcessError as e: + self.components[0]._error.emit("Ffmpeg could not be found. Is it installed?", str(e)) + self.cancelExport() + return + cmd = " ".join(ffmpegCommand) print('###### FFMPEG COMMAND ######\n%s' % cmd) print('############################') |
