Can't play VST3 plugin in 1.0.0 OS version

Hello I have a problem with a VST3 plugin that was fully working on the 0.11.0 version of the Elk Audio OS. I am working on the HIFI Berry, I have just updated to the 1.0.0 version and now I get the following errors:

[2023-07-04 09:11:46.851] [warning] #############################
[2023-07-04 09:11:46.851] [warning]    Started Sushi Logger!
[2023-07-04 09:11:46.851] [warning] #############################
[2023-07-04 09:11:46.885] [info] [plugin_library] Setting base plugin path to: /home/mind/plugins
[2023-07-04 09:11:46.887] [info] [jsonconfig] Setting engine sample rate to 48000.0
[2023-07-04 09:11:46.887] [info] [main] Setting up Xenomai RASPA frontend
[2023-07-04 09:11:46.888] [info] [engine] Track main successfully added to engine
[2023-07-04 09:11:46.888] [info] [engine] Connected engine input 1 to channel 0 of track "0"
[2023-07-04 09:11:46.888] [info] [engine] Connected engine output 1 to channel 1 of track "0"
[2023-07-04 09:11:47.014] [info] [vst3] Querying plugin OnnxTemplatePlugin of type Audio Module Class
[2023-07-04 09:11:47.014] [info] [vst3] Querying plugin OnnxTemplatePlugin of type Component Controller Class
[2023-07-04 09:11:47.014] [error] [vst3] No match for plugin onnxtemplate in factory
[2023-07-04 09:11:47.014] [error] [engine] Failed to initialize processor onnxtemplate with error 8
[2023-07-04 09:11:47.014] [info] [processor] Destroyed processor 1()

I’ll leave here the link to the git repo of the plugin:
https://github.com/domenicostefani/OnnxTemplatePlugin @domenico
Do you know any way to fix the error?

1 Like

Posting the config file here

{
    "host_config" : {
        "samplerate" : 48000
    },
    "tracks" : [
        {
            "name" : "main",
	    "channels" : 1,
            "inputs" : [
                {
                    "engine_channel" : 1,
                    "track_channel" : 0
                }
            ],
            "outputs" : [
                {
                    "engine_channel" : 1,
                    "track_channel" : 1
                }
            ],
            "plugins" : [
                {
		    "uid"  : "onnxtemplate",
                    "path" : "OnnxTemplatePlugin.vst3",
                    "name" : "onnxtemplate",
                    "type" : "vst3x"
                }
            ]
        }
    ],
    "midi" : {
        "cc_mappings": [
        ]
    }
}