Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions storytoolkitai/integrations/mots_resolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ def get_resolve(self):
elif platform.system() == 'Linux':
default_resolve_dir = '/opt/resolve/'

# @todo find out the executable name for Davinci Resolve on Linux
executable = '/bin/resolve'
# Confirmed working on Fedora 40 with KDE Plasma 6 (Wayland)
executable = 'bin/resolve'

else:
# check if the default path has it...
Expand Down Expand Up @@ -231,7 +231,8 @@ def get_resolve(self):
expectedPath = os.getenv(
'PROGRAMDATA') + "\\Blackmagic Design\\DaVinci Resolve\\Support\\Developer\\Scripting\\Modules\\"
elif sys.platform.startswith("linux"):
expectedPath = "/opt/resolve/libs/Fusion/Modules/"
# Confirmed working on Fedora 40 with KDE lasma 6 (Wayland).
expectedPath = "/opt/resolve/Developer/Scripting/Modules/"

# check if the default path has it...
self.logger.debug("Unable to find module DaVinciResolveScript from PYTHONPATH "
Expand Down