NAM JUCE: Neural Amp Modeler JUCE Implementation

All your LV2 and LADSPA goodness and more.

Moderators: MattKingUSA, khz

Post Reply
User avatar
LAM
Established Member
Posts: 992
Joined: Thu Oct 08, 2020 3:16 pm
Has thanked: 141 times
Been thanked: 349 times

NAM JUCE: Neural Amp Modeler JUCE Implementation

Post by LAM »

NAM JUCE: Neural Amp Modeler JUCE Implementation - https://github.com/Tr3m/nam-juce

A JUCE implementation of Steven Atkinson's NeuralAmpModelerPlugin. This Repository is still a work-in-proress, but the basic functionality is there.

Image

in mix, nobody can hear your screen

magill
Established Member
Posts: 27
Joined: Wed Apr 05, 2023 9:11 am
Has thanked: 12 times
Been thanked: 9 times

Re: NAM JUCE: Neural Amp Modeler JUCE Implementation

Post by magill »

It looks very cool but has actually anyone managed to compile this? Unfortunately there is no binaries available.

User avatar
LAM
Established Member
Posts: 992
Joined: Thu Oct 08, 2020 3:16 pm
Has thanked: 141 times
Been thanked: 349 times

Re: NAM JUCE: Neural Amp Modeler JUCE Implementation

Post by LAM »

magill wrote: Thu Feb 15, 2024 7:10 pm

It looks very cool but has actually anyone managed to compile this? Unfortunately there is no binaries available.

Yes, works here:

Image

For JUCE based plugins is almost always the same "dance":

Code: Select all

git clone --recurse-submodules https://github.com/Tr3m/nam-juce.git
cd nam-juce/
Projucer namJUCE.jucer ## Make sure there is a "Linux Makefile" exporter, save and close projucer
cd Builds/LinuxMakefile/ && make -j $(nproc) CONFIG=Release

Then if the plugin is not already copied to .vst3 you can find it inside

Code: Select all

nam-juce/Builds/LinuxMakefile/build/Neural Amp Modeler.vst3/

in mix, nobody can hear your screen

magill
Established Member
Posts: 27
Joined: Wed Apr 05, 2023 9:11 am
Has thanked: 12 times
Been thanked: 9 times

Re: NAM JUCE: Neural Amp Modeler JUCE Implementation

Post by magill »

I only tried with cmake and it was giving me errors. Never used projucer before but it worked. Thanks for your dance moves!

Post Reply