From 905bc6c332a898d62e627302fa58b41720ca66b9 Mon Sep 17 00:00:00 2001 From: daid Date: Thu, 13 Jun 2013 13:07:01 +0200 Subject: [PATCH] Fix the timelaps ffmpeg path. --- Cura/gui/util/webcam.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cura/gui/util/webcam.py b/Cura/gui/util/webcam.py index 2d309640..6046e4c5 100644 --- a/Cura/gui/util/webcam.py +++ b/Cura/gui/util/webcam.py @@ -36,10 +36,10 @@ def hasWebcamSupport(): def getFFMPEGpath(): if platform.system() == "Windows": - return os.path.normpath(os.path.join(os.path.split(__file__)[0], "../ffmpeg.exe")) + return os.path.normpath(os.path.join(os.path.split(__file__)[0], "../../ffmpeg.exe")) elif os.path.exists('/usr/bin/ffmpeg'): return '/usr/bin/ffmpeg' - return os.path.normpath(os.path.join(os.path.split(__file__)[0], "../ffmpeg")) + return os.path.normpath(os.path.join(os.path.split(__file__)[0], "../../ffmpeg")) class webcam(object): -- 2.30.2