OBS will no longer connect with Updeck

CPcruncher

New Member
After doing the update May 3, I can no longer get UPdeck to work with OBS. I get the following error code when the program opens:

[UPDeck_2-1-19.lua] Error running file: [string "?"]:67: dlopen(libobs.0.dylib, 0x0005): tried: 'libobs.0.dylib' (relative path not allowed in hardened program), '/System/Volumes/Preboot/Cryptexes/OSlibobs.0.dylib' (no such file), '/Users/peterbell/Desktop/OBS.app/Contents/Frameworks/libobs.0.dylib' (no such file), '/Users/peterbell/Desktop/OBS.app/Contents/Frameworks/libobs.0.dylib' (no such file), '/usr/lib/libobs.0.dylib' (no such file, not in dyld cache), 'libobs.0.dylib' (relative path not allowed in hardened program), '/usr/lib/libobs.0.dylib' (no such file, not in dyld cache)

Has anyone else encountered this problem or have a solution?
 

hokey

New Member
I checked out their Discord in support and it looks like the update in OBS changed the name of their frontend api library. I edited the script they provided around line 66 to this:
if ffi.os == "OSX" then
obsffi = ffi.load("libobs-frontend-api.1.dylib")
else

They should update their script published to that but for now you can probably change yours to that and be good to go.
 

CPcruncher

New Member
I checked out their Discord in support and it looks like the update in OBS changed the name of their frontend api library. I edited the script they provided around line 66 to this:


They should update their script published to that but for now you can probably change yours to that and be good to go.
Thanks, I will give it a try.
 
Top