Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gvne/vstSpleeter
A VST interface to Spleeter
https://github.com/gvne/vstSpleeter
Last synced: 2 months ago
JSON representation
A VST interface to Spleeter
- Host: GitHub
- URL: https://github.com/gvne/vstSpleeter
- Owner: gvne
- Created: 2020-04-04T12:17:41.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-26T18:38:16.000Z (over 4 years ago)
- Last Synced: 2024-08-04T02:08:52.716Z (6 months ago)
- Language: C++
- Size: 18.6 KB
- Stars: 62
- Watchers: 8
- Forks: 27
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-juce - vstSpleeter
README
# vst Spleeter: A VST interface to Spleeter
# Note: This project has only been tested on OSx 10.14 and 10.15This project is using [JUCE](https://juce.com/) and
[spleeterpp](https://github.com/gvne/spleeterpp) to make a simple application
that runs [spleeter](https://github.com/deezer/spleeter) in c++.# Build:
## OSX
Clone spleeterpp and build the install target in Release mode.
To generate the solution do:
```
SPLEETERPP_INSTALL_DIR=...
cmake -GXcode -DCMAKE_INSTALL_PREFIX=$SPLEETERPP_INSTALL_DIR -Drtff_use_mkl=ON ..
```In spleeter-vst project root, create a symlink to the install folder:
```
bash configure.sh $SPLEETERPP_INSTALL_DIR
```Then, build it with JUCE !
xcopy "external/spleeterpp/build/install/models/filter" "C:\Users\guillaume\taff\perso\vstSpleeter\Builds\VisualStudio2019\x64\Release\Shared Code\models" /s /e
if not exist "test" mkdir "test"
## Windows* Clone Eigen in the external folder
* Build spleeterpp in the external folder
* Install the external/spleeterpp/build/install/lib/tensorflow.dll in the host application search path. The easiest is to copy it in the system directory (%SystemRoot%\\system32)
* Install the [VST3](https://www.steinberg.net/vst3sdk) sdk in C:/SDKs
* Open the spleeter-vst.jucer project and start the visual studio generator
* Build with visual studio in Release modeFor the first two steps, you can run the following script:
```bash
mkdir external && cd external
git clone https://github.com/eigenteam/eigen-git-mirror.git eigen
cd eigen && git checkout 3.3.7 && cd -git clone https://github.com/gvne/spleeterpp.git && cd spleeterpp
git checkout 586a5dc503c73fc4975aca675432a280d6ea860f
mkdir build && cd build
cmake -Drtff_use_mkl=ON -DCMAKE_INSTALL_PREFIX=$(pwd)/install ..
cmake --build . --config Release --target INSTALL
cd ../..cd ..
```