-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 20b37a4
Showing
27 changed files
with
4,842 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
env: | ||
PAWPAW_SKIP_LV2: 0 | ||
|
||
jobs: | ||
linux: | ||
strategy: | ||
matrix: | ||
target: [linux-x86_64] | ||
runs-on: ubuntu-20.04 | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
- uses: distrho/dpf-makefile-action@v1 | ||
with: | ||
target: ${{ matrix.target }} | ||
pawpaw: true | ||
|
||
windows: | ||
strategy: | ||
matrix: | ||
target: [win64] | ||
runs-on: ubuntu-20.04 | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
- uses: distrho/dpf-makefile-action@v1 | ||
with: | ||
target: ${{ matrix.target }} | ||
pawpaw: true | ||
|
||
source: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
- uses: distrho/dpf-makefile-action@v1 | ||
with: | ||
target: source | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[submodule "libxputty"] | ||
path = libxputty | ||
url = https://github.com/brummer10/libxputty.git | ||
[submodule "RTNeural"] | ||
path = RTNeural | ||
url = https://github.com/jatinchowdhury18/RTNeural.git | ||
[submodule "NeuralAmpModelerCore"] | ||
path = NeuralAmpModelerCore | ||
url = https://github.com/sdatkinson/NeuralAmpModelerCore.git |
Submodule NeuralAmpModelerCore
added at
bc51a1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Ratatouille.lv2 | ||
|
||
![Ratatouille](https://github.com/brummer10/Ratatouille.lv2/blob/main/Ratatouille.png?raw=true) | ||
|
||
Ratatouille is a Neural Model loader/mixer for Linux/Windows. | ||
It could load 2 models, could be [*.nam files](https://tonehunt.org/all) with the [Neural Amp Modeler](https://github.com/sdatkinson/NeuralAmpModelerCore) module, | ||
or [*.json or .aidax files](https://cloud.aida-x.cc/all) with the [RTNeural](https://github.com/jatinchowdhury18/RTNeural) module. | ||
|
||
You could load just a single model file, in that case the "Blend" control will do nothing. | ||
When you've loaded a 2. model, the "Blend" control will blend between the two models. | ||
and mix them to simulate your specific tone. | ||
|
||
Ratatouille.lv2 support resampling when needed to match the expected Sample Rate of the loaded models. | ||
Both models could have different expectations. | ||
|
||
## Dependencys | ||
|
||
- libcairo2-dev | ||
- libx11-dev | ||
- lv2-dev | ||
|
||
## Building from source code | ||
|
||
- git clone https://github.com/brummer10//Ratatouille.lv2.git | ||
- cd Ratatouille | ||
- git submodule update --init --recursive | ||
- make | ||
- make install # will install into ~/.lv2 ... AND/OR.... | ||
- sudo make install # will install into /usr/lib/lv2 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.