Brilliant!
Now if one only could do something like
fu:ToggleUtility('FBXImport', 'p:\ath\to\file.obj', autoImport = true)
Brilliant!
fu:ToggleUtility('FBXImport', 'p:\ath\to\file.obj', autoImport = true)
Hi Nick.Nick Verlinden wrote: ↑Thu Apr 12, 2018 5:54 amWhen I try to call the Resolve function inside the console from the Fusion page, it does not return anything. Is anybody else experiencing this? I tested this on both Windows and macOS in the public beta "15.0.0B.030". I can't get any of the example resolve scripts from this thread to work because the Resolve function does not return anything.
Lua> local resolve = Resolve()
Lua> dump(resolve)
nil
Code: Select all
Lua> local name = "Bob"
Lua> print(name)
-- Result: nil
Code: Select all
Lua> local name = "Bob"
print(name)
-- Result: Bob
Code: Select all
dump(Resolve())
Code: Select all
resolve = Resolve()
dump(resolve)
Code: Select all
resolve = bmd.scriptapp("Resolve", "localhost")
Code: Select all
resolve = bmd.scriptapp("Resolve", "10.20.30.15")
Amen to that!
Code: Select all
sqlite3 "/Library/Application Support/Blackmagic Design/DaVinci Resolve/Resolve Disk Database/Resolve Projects/Users/guest/Projects/Ozo Stitch/Project.db" ".header on" ".mode column" "SELECT ProjectName FROM SM_Project;" "SELECT Name, MediaFilePath, Start, Duration FROM Sm2TiItem WHERE DbType = 'Sm2TiVideoClip';"
Hi Igor.Igor Ridanovic wrote: ↑Mon Apr 16, 2018 11:38 pmHow does it connect to the DB? Does your example work only on the host that's running the PostgreSQL server?
Code: Select all
Macros:/IO/MediaOutUltra.setting