[ANN] B.Spacr sound effect plugin

Discuss anything new and newsworthy! See http://planet.linuxaudio.org and https://libreav.org/news for more Linux Audio News!

Announcements of proprietary software may fit better in the Marketplace.


Moderators: raboof, MattKingUSA, khz

Post Reply
sjaehn
Established Member
Posts: 138
Joined: Fri May 03, 2019 6:05 pm
Has thanked: 29 times
Been thanked: 61 times

[ANN] B.Spacr sound effect plugin

Post by sjaehn »

Hi,

after weeks of hard work I just released the first official version of a new sound effect plugin.

B.Spacr is a unique LV2 effect plugin that enables a clear and brilliant audibility of your music production.
B.Spacr is suited for any kind of music, including rock, funk, pop, rap, and electronic music.
This plugin can be added to each track individually or to the master bus with zero latency.
The result is a space-clear sound without any loss of audio signal information and without
any artifacts only depending on the quality of the input signal. In contrast to many over-complex
audio plugins, the number of parameters have been reduced to the minimum for the best user experience.

https://github.com/sjaehn/BSpacr

Enjoy and make some music with it
Sven
Kott
Established Member
Posts: 818
Joined: Thu Mar 21, 2013 12:55 am
Location: Vladivostok
Has thanked: 65 times
Been thanked: 122 times

Re: [ANN] B.Spacr sound effect plugin

Post by Kott »

Incredible! My records charts reaches the Moon now!
User avatar
sunrat
Established Member
Posts: 915
Joined: Wed Jul 22, 2020 2:08 pm
Has thanked: 151 times
Been thanked: 242 times

Re: [ANN] B.Spacr sound effect plugin

Post by sunrat »

Will download and try it out tomorrow.
Kott
Established Member
Posts: 818
Joined: Thu Mar 21, 2013 12:55 am
Location: Vladivostok
Has thanked: 65 times
Been thanked: 122 times

Re: [ANN] B.Spacr sound effect plugin

Post by Kott »

You'll be late. This plugin works only today.
User avatar
Michael Willis
Established Member
Posts: 1451
Joined: Mon Oct 03, 2016 3:27 pm
Location: Rocky Mountains, North America
Has thanked: 69 times
Been thanked: 164 times
Contact:

Re: [ANN] B.Spacr sound effect plugin

Post by Michael Willis »

This is an amazingly elegant algorithm:

Code: Select all

	for (uint32_t i = 0; i < n_samples; ++i)
	{
		output1[i] = input1[i];
		output2[i] = input2[i];
	}
User avatar
sadko4u
Established Member
Posts: 986
Joined: Mon Sep 28, 2015 9:03 pm
Has thanked: 2 times
Been thanked: 359 times

Re: [ANN] B.Spacr sound effect plugin

Post by sadko4u »

Michael Willis wrote: Thu Apr 01, 2021 4:01 pm This is an amazingly elegant algorithm:

Code: Select all

	for (uint32_t i = 0; i < n_samples; ++i)
	{
		output1[i] = input1[i];
		output2[i] = input2[i];
	}
No losses, no latency, no distortion. As promised!
LSP (Linux Studio Plugins) Developer and Maintainer.
User avatar
bluebell
Established Member
Posts: 1909
Joined: Sat Sep 15, 2012 11:44 am
Location: Saarland, Germany
Has thanked: 111 times
Been thanked: 116 times

Re: [ANN] B.Spacr sound effect plugin

Post by bluebell »

sadko4u wrote: Thu Apr 01, 2021 11:26 pm
Michael Willis wrote: Thu Apr 01, 2021 4:01 pm This is an amazingly elegant algorithm:

Code: Select all

	for (uint32_t i = 0; i < n_samples; ++i)
	{
		output1[i] = input1[i];
		output2[i] = input2[i];
	}
No losses, no latency, no distortion. As promised!
I am developing a cleaning function to avoid jitter and sharpen the edges of all bits. It makes implicitely a laplace transformation forth and back and applies a trans- and subharmonic musical aware optimization routine. I plan to make a living out of it so please be patient and forgive me for not making it open source. The final version will scale to up to 4096 CPU cores and include a licensed SoftRAM RAM doubler feature.

Code: Select all

	for (uint32_t i = 0; i < n_samples; ++i)
	{
		output1[i] = bluebell_clean(input1[i]);
		output2[i] = bluebell_clean(input2[i]);
	}

Linux – MOTU UltraLite AVB – Qtractor – http://suedwestlicht.saar.de/

Post Reply