Has anyone gotten OpenVINO Music Separation to work in Audacity as a module/plugin? I can’t even get it to show in the modules for activation. I’ve installed the plugin but, I could have sworn it would require rebuilding Audacity (?) I’ve also attempted to put it in a modules folder in every place I see that it could be from the compressed file they have available online. I know they have it going in Ubuntu and Windows and I know we have the AI plugin available. But, I still don’t see it showing in any way.
Hi!
OpenVINO is not installed by default.
Add repos if needed.
https://software.opensuse.org/search?baseproject=ALL&q=OpenVINO
https://software.opensuse.org/package/openvino
Possibly you need to compile these plugins:
# Audacity OpenVINO module build for Linux (Ubuntu 22.04)
Hi! The following is the process that we use when building the Audacity modules for Linux. These instructions are for Ubuntu 22.04, so you may need to adapt them slightly for other Linux distros.
## High-Level Overview
Before I get into the specifics, at a high-level we will be doing the following:
* Cloning & building whisper.cpp with OpenVINO support (For transcription audacity module)
* Cloning & building Audacity without modifications (just to make sure 'vanilla' build works fine)
* Adding our OpenVINO module src's to the Audacity source tree, and re-building it.
## Dependencies
Here are some of the dependencies that you need to grab. If applicable, I'll also give the cmd's to set up your environment here.
* Build Essentials (GCC & CMake)
```
sudo apt install build-essential
```
* OpenVINO - Download appropriate version from [here](https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.3/linux). For these instructions, we will use ```l_openvino_toolkit_ubuntu22_2024.3.0.16041.1e3b88e4e3f_x86_64.tgz```.
```
# Extract it
tar xvf l_openvino_toolkit_ubuntu22_2024.3.0.16041.1e3b88e4e3f_x86_64.tgz
This file has been truncated. show original
# Audacity OpenVINO module build for Linux (Ubuntu 22.04)
Hi! The following is the process that we use when building the Audacity modules for Linux. These instructions are for Ubuntu 22.04, so you may need to adapt them slightly for other Linux distros.
## High-Level Overview
Before I get into the specifics, at a high-level we will be doing the following:
* Cloning & building whisper.cpp with OpenVINO support (For transcription audacity module)
* Cloning & building Audacity without modifications (just to make sure 'vanilla' build works fine)
* Adding our OpenVINO module src's to the Audacity source tree, and re-building it.
## Dependencies
Here are some of the dependencies that you need to grab. If applicable, I'll also give the cmd's to set up your environment here.
* Build Essentials (GCC & CMake)
```
sudo apt install build-essential
```
* OpenVINO - Download appropriate version from [here](https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.3/linux). For these instructions, we will use ```l_openvino_toolkit_ubuntu22_2024.3.0.16041.1e3b88e4e3f_x86_64.tgz```.
```
# Extract it
tar xvf l_openvino_toolkit_ubuntu22_2024.3.0.16041.1e3b88e4e3f_x86_64.tgz
This file has been truncated. show original
system
Closed
November 27, 2024, 5:00pm
3
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.