Open ArnaudJalbert opened 4 days ago
Maybe it is not finding the plugins; could you try running the command with the "-v" (verbose) flag?
Hello @darbyjohnston ! Thanks for the tip I will try that today!
Hello @darbyjohnston ! When I run the command with the verbose flag it looks like the logs are indicating that the plugin is found correctly:
toucan-render -v '/home/ajalbert/Desktop/test_otio.otio' ./Desktop/test_toucan_arno/test.jpg
toucan::ImageEffectHost: Searching for plugins...
toucan::ImageEffectHost: Search path:
toucan::ImageEffectHost: Search path: ../..
toucan::ImageEffectHost: Loading plugins...
toucan::ImageEffectHost: Initializing plugins...
0/249
1/249
2/249
3/249
Sorry, I need to make the language more clear, it looks like the plugins are missing. If it finds the plugins it will print each one like this:
toucan::ImageEffectHost: Loading plugins...
toucan::ImageEffectHost: Path: bin\toucan-render\Debug\..\..\..\plugins\Debug\toucanColorSpace.ofx
toucan::ImageEffectHost: Path: bin\toucan-render\Debug\..\..\..\plugins\Debug\toucanDraw.ofx
toucan::ImageEffectHost: Path: bin\toucan-render\Debug\..\..\..\plugins\Debug\toucanFilter.ofx
toucan::ImageEffectHost: Path: bin\toucan-render\Debug\..\..\..\plugins\Debug\toucanGenerator.ofx
toucan::ImageEffectHost: Path: bin\toucan-render\Debug\..\..\..\plugins\Debug\toucanTransform.ofx
toucan::ImageEffectHost: Path: bin\toucan-render\Debug\..\..\..\plugins\Debug\toucanTransition.ofx
toucan::ImageEffectHost: Initializing plugins...
toucan::ImageEffectHost: Plugin: toucan:ColorConvert
toucan::ImageEffectHost: Context: OfxImageEffectContextFilter
toucan::ImageEffectHost: "color_config": OfxParamTypeString
toucan::ImageEffectHost: "context_key": OfxParamTypeString
toucan::ImageEffectHost: "context_value": OfxParamTypeString
toucan::ImageEffectHost: "fromspace": OfxParamTypeString
toucan::ImageEffectHost: "premult": OfxParamTypeBoolean
toucan::ImageEffectHost: "tospace": OfxParamTypeString
It will search for the plugins in directories relative to the binary. Do you see the "*.ofx" files in the "lib" directory?
Hello!
We were able to build and run
toucan
inside Linux(Rocky8.9). However, we are currently having issues when trying to render an OTIO timeline. It looks like an OpenImageIO buffer error is raised when a Gap or an effect is encountered by the tool. This does not seem to happen on Mac, only on Linux. Anytime a gap is encountered, this error message is printed out:It looks like OpenImageIO is trying to write a frame but since it's a gap there is no data to write.
For example, when trying to write
Transition.otio
with commandtoucan-render ./data/Transiotion.otio test_toucan.jpg
will yield"Here, it looks like
toucan
fails when it encounters the transition effect. Running the Gap example, we get a similar error:Would happen to have an idea why this would be happening on Linux only? Maybe there is a difference between the OpenImageIO API on Mac and on Linux?
Let me know if you could help us and if there is anything we can do!
Thank you!