Search found 156 matches

by lucianodato
Thu May 24, 2018 3:51 pm
Forum: Recorders & Sequencers
Topic: Reaper Snap Package
Replies: 12
Views: 4891

Re: Reaper Snap Package

falkTX wrote:hmm do you have permissions to redistribute their binaries?
1. DO NOT REDISTRIBUTE ANYTHING FROM THIS WEBSITE
(from LANDOLEET)
Hmmm thanks falktx I didn't pay attention to that. I will remove it now. Will have to ask I guess.
by lucianodato
Thu May 24, 2018 3:21 pm
Forum: Recorders & Sequencers
Topic: Reaper Snap Package
Replies: 12
Views: 4891

Reaper Snap Package

Hello everybody! I'm attempting to build a snap package for reaper. What do you think would be correct, packaging the prebuilt binary or building libswell from source? I'm looking at the AUR script and they are compiling it. Not sure what to do. Anyways, here is a rough yaml script that barely works...
by lucianodato
Tue Apr 24, 2018 7:52 pm
Forum: Plugins, Effects and Instruments
Topic: speech-denoise an lv2 plugin based on RNNoise library
Replies: 4
Views: 2923

Re: speech-denoise an lv2 plugin based on RNNoise library

It's the possibilities what is exciting about this library. You can perfectly train the learning network with guitar samples and get a perfect gate out of it. The library comes with a prebuilt training based on voice samples but as I said could be anything. I haven't explored that yet but I might in...
by lucianodato
Sun Apr 22, 2018 11:58 pm
Forum: Plugins, Effects and Instruments
Topic: speech-denoise an lv2 plugin based on RNNoise library
Replies: 4
Views: 2923

speech-denoise an lv2 plugin based on RNNoise library

Hi folks! I've been developing this simple plugin that makes use of Xiph's RNNoise library for speech denoising. It works more as a gate with mild noise reduction over voice present segments and it detects voice presence beautifully as RNNoise uses AI in order to recognize voice in the audio. One th...
by lucianodato
Tue Apr 10, 2018 9:30 pm
Forum: Linux Music News
Topic: AV Linux 2018.4.12 Released!
Replies: 20
Views: 7549

Re: AV Linux 2018.4.12 Released!

Great work Glenn :D !
by lucianodato
Tue Apr 10, 2018 2:58 pm
Forum: Developer's Section
Topic: Cross compile DPF for Windows
Replies: 9
Views: 3479

Re: Cross compile DPF for Windows

Damien from zamaudio did something like that using travisci look at his repo.
by lucianodato
Tue Apr 10, 2018 11:16 am
Forum: Computer Related Hardware
Topic: Early 2011 Macbook Pro
Replies: 4
Views: 1670

Re: Early 2011 Macbook Pro

I bought the machine yesterday. I was dirt cheap and in good condition. I will test everything and get back here to report. Thanks everyone!
by lucianodato
Tue Apr 10, 2018 11:05 am
Forum: Linux Music News
Topic: Balance Analog Magpha EQ plugin released
Replies: 7
Views: 3503

Re: Balance Analog Magpha EQ plugin released

Hi John! Congratulations on your achievement! I can attest that it sounds really good at high frequencies. Much better that the Orfanidis peak filter. Are you familiar with those matched zero transform improved filters? Mzti? I've read a long time ago that paper and they were working in correcting p...
by lucianodato
Mon Apr 09, 2018 8:01 pm
Forum: Linux Music News
Topic: Balance Analog Magpha EQ plugin released
Replies: 7
Views: 3503

Re: Balance Analog Magpha EQ plugin released

It does what it advertises correctly. It introduce only 32 samples of delay. Very interesting coming from investigation in Queen Mary's university since everything they do is very well regarded. I wonder how they achieve phase accurate response without resampling. Interesting indeed.
by lucianodato
Sun Apr 08, 2018 10:14 pm
Forum: Computer Related Hardware
Topic: Early 2011 Macbook Pro
Replies: 4
Views: 1670

Early 2011 Macbook Pro

Hi I'm looking to buy a macbook for audio production and upgrade the ram and disk. It has a firewire port that I need for my Focusrite Saffire Pro40 soundcard. Anyone has experience with a macbook using linux for audio production?
by lucianodato
Sun Apr 01, 2018 2:13 am
Forum: KXStudio Discussion
Topic: Package updates in the KXStudio repositories
Replies: 154
Views: 61228

Re: Package updates in the KXStudio repositories

Yes! Kde neon is great!
by lucianodato
Thu Mar 29, 2018 4:56 pm
Forum: Developer's Section
Topic: Meson build system
Replies: 11
Views: 4061

Re: Meson build system

Good catch! Something like this will fix it (not sure about windows though) #get the build operating system and configure install path and shared object extension current_os = build_machine.system() if current_os == 'darwin' #mac i_path = '/Library/Audio/Plug-Ins/LV2/nrepel.lv2' extension = '.dylib'...
by lucianodato
Thu Mar 29, 2018 3:57 pm
Forum: Developer's Section
Topic: Where to start developing Linux music software?
Replies: 18
Views: 7332

Re: Where to start developing Linux music software?

How about an amp plugin that uses dpf and meson as a build system? Would that be useful? Meson is not hard to learn at all and makes much more sense than make or cmake or waf or anything really (I'm converted yes!)
by lucianodato
Thu Mar 29, 2018 3:44 pm
Forum: Developer's Section
Topic: Where to start developing Linux music software?
Replies: 18
Views: 7332

Re: Where to start developing Linux music software?

Hey! Coincidentally I'm playing with meson for my plugin and it's just great. I can fork some dpf example and build it with meson now that I know a little bit more of how it works. Would that be useful? Plus I plan to migrate to dpf in the near future so it's win win for me
by lucianodato
Thu Mar 29, 2018 1:53 pm
Forum: Developer's Section
Topic: Meson build system
Replies: 11
Views: 4061

Re: Meson build system

It turns out as obvious that I wasn't aware of the possibility of configuring a file that meson offers. With this few lines I don't need the script that used sed to replace the lib extension #Configure manifest ttl in order to be copied to install folder manifest_conf = configuration_data() manifest...