Airwindows plugins cannot be found...

Support & discussion regarding DAWs and MIDI sequencers.

Moderators: MattKingUSA, khz

User avatar
OccinticLady
Established Member
Posts: 231
Joined: Fri Apr 16, 2021 7:04 am
Location: 127.0.0.1
Has thanked: 194 times
Been thanked: 74 times
Contact:

Airwindows plugins cannot be found...

Post by OccinticLady »

Hi,
Sorry to ask a dumb question...I have a question about the Airwindows plugins. I have set the path to the plugins and Ardour scanned them. And yes, I saw "Wider" in the list.
However, if I want to add the plugin, I cannot find the Airwindows plugin (or the name of the maker)...
Where do I miss the point?
Thanks
Melissa
User avatar
LAM
Established Member
Posts: 992
Joined: Thu Oct 08, 2020 3:16 pm
Has thanked: 141 times
Been thanked: 349 times

Re: Airwindows plugins cannot be found...

Post by LAM »

Hi @OccinticLady,
first suggestion is to have all the manually downloaded VST plugins under the same folder. For example I have Airwindows ones in a folder called Airwindows inside the .vst folder in my home. This way you set ~/.vst in the search path of VST plugins in Ardour (or any other DAW) settings and every folder inside it will be scanned.
Second suggestion is to make sure there are no filters enabled in the Plugin Selector, you can select "Show all" (or something like that).
Attachments
2021-11-17_17.20.27.498.png
2021-11-17_17.20.27.498.png (234.42 KiB) Viewed 17160 times

in mix, nobody can hear your screen

User avatar
OccinticLady
Established Member
Posts: 231
Joined: Fri Apr 16, 2021 7:04 am
Location: 127.0.0.1
Has thanked: 194 times
Been thanked: 74 times
Contact:

Re: Airwindows plugins cannot be found...

Post by OccinticLady »

@LAM thanks, I'll try that NOW :D
User avatar
OccinticLady
Established Member
Posts: 231
Joined: Fri Apr 16, 2021 7:04 am
Location: 127.0.0.1
Has thanked: 194 times
Been thanked: 74 times
Contact:

Re: Airwindows plugins cannot be found...

Post by OccinticLady »

Aha...I have version 5.12 and you possibly higher...
Edit : I think I have got it. I have the free version, and that can (possibly) not add extra stuff.
Also, I dont have access to "effects" in that window (that does look diffeent, hebce my question on the version)
...
Hmm, I will NEED to buy Ardour anyway if I want to contuinue down this path... :)
Last edited by OccinticLady on Wed Nov 17, 2021 5:43 pm, edited 1 time in total.
User avatar
LAM
Established Member
Posts: 992
Joined: Thu Oct 08, 2020 3:16 pm
Has thanked: 141 times
Been thanked: 349 times

Re: Airwindows plugins cannot be found...

Post by LAM »

Doesn't work on 5.12?

You don't "need" to "buy it". If you want to support the development you can make a "donation", and that's good. :D

The version that comes with your distro/not distro or that you compile by yourself is the same in features, except for proprietary GUIs of some plugins.

in mix, nobody can hear your screen

User avatar
OccinticLady
Established Member
Posts: 231
Joined: Fri Apr 16, 2021 7:04 am
Location: 127.0.0.1
Has thanked: 194 times
Been thanked: 74 times
Contact:

Re: Airwindows plugins cannot be found...

Post by OccinticLady »

I right-click in the processorbox and select "add plugin", I do get the frame, but I dont see any effects...
What I can do (not scared to do) is compile the newest version from scratch...
I love this :D - I use Manjaro as main system and Debian as music development.
Every time an update breaks my system I jump up, happy to learn something...
One of the first things I did was compile a new kernel and install it.
Takes time and research, but...it's fun :wink:
Melissa
User avatar
LAM
Established Member
Posts: 992
Joined: Thu Oct 08, 2020 3:16 pm
Has thanked: 141 times
Been thanked: 349 times

Re: Airwindows plugins cannot be found...

Post by LAM »

If you are already using Debian and you are not afraid to break something just point your repos to sid.
https://wiki.debian.org/DebianUnstable
Then:

Code: Select all

sudo apt update
sudo apt upgrade
sudo apt full-upgrade
*ONLY IF YOU ARE USING KXSTUDIO REPOS*:
If you are using Ardour 5.12 from KXStudio repos you have to reinstall Ardour from the Debian repos with:

Code: Select all

 sudo apt install -t sid ardour ardour-data
and then:

Code: Select all

sudo apt-mark hold ardour
to avoid Ardour being downgraded to KXStudio one when upgrading other packages.

in mix, nobody can hear your screen

User avatar
sunrat
Established Member
Posts: 925
Joined: Wed Jul 22, 2020 2:08 pm
Has thanked: 152 times
Been thanked: 247 times

Re: Airwindows plugins cannot be found...

Post by sunrat »

LAM wrote: Wed Nov 17, 2021 6:17 pm If you are already using Debian and you are not afraid to break something just point your repos to sid.
https://wiki.debian.org/DebianUnstable
Then:

Code: Select all

sudo apt update
sudo apt upgrade
sudo apt full-upgrade
That would upgrade the whole system to unstable and very likely break something.
Ardour in Debian Stable is currently v6.5 but may be overshadowed by the ancient KX version because of its "2" epoch prefix.

Code: Select all

$ apt list -a ardour
Listing... Done
ardour/gcc5 2:5.12.0-1kxstudio2v5 amd64
ardour/stable,now 1:6.5.0+ds0-1 amd64 [installed]
ardour/stable 1:5.12.0-1kxstudio2 amd64

ardour/gcc5 2:5.12.0-1kxstudio2v5 i386
ardour/stable 1:6.5.0+ds0-1 i386
ardour/stable 1:5.12.0-1kxstudio2 i386
I suggest a safer route would be to purge the KX version first and specify the stable version:

Code: Select all

apt purge ardour
apt install -t stable ardour
An apt preferences file will prevent the KX version from being reinstalled.
Create a file /etc/apt/preferences.d/99ardour with this content:

Code: Select all

 
# Never prefer ardour from KX repo
Package: ardour
Pin: origin kx.studio
Pin-Priority: 1
Of course if you use Ardour regularly it is worth donating or subscribing to get the latest version from ardour.org . :wink:
Last edited by sunrat on Thu Nov 18, 2021 9:17 pm, edited 2 times in total.
User avatar
LAM
Established Member
Posts: 992
Joined: Thu Oct 08, 2020 3:16 pm
Has thanked: 141 times
Been thanked: 349 times

Re: Airwindows plugins cannot be found...

Post by LAM »

sunrat wrote: Wed Nov 17, 2021 11:27 pm That would upgrade the whole system to unstable and very likely break something.
That's part of the fun. :lol:
I personally broke more systems using stable and trying to install newer software.

Seriously though, I've done this at least 5 times on real hardware and in VMs in the last 2 weeks.
As long you you follow my instructions you should be fine (fingers crossed).

in mix, nobody can hear your screen

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

Re: Airwindows plugins cannot be found...

Post by LAM »

Just for reference, I would not have suggested this otherwise: 8)
OccinticLady wrote: Wed Nov 17, 2021 6:01 pm Every time an update breaks my system I jump up, happy to learn something...
LAM wrote: Wed Nov 17, 2021 6:17 pm If you are already using Debian and you are not afraid to break something

in mix, nobody can hear your screen

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

Re: Airwindows plugins cannot be found...

Post by LAM »

@OccinticLady how is going? Did you upgrade?

in mix, nobody can hear your screen

glowrak guy
Established Member
Posts: 2329
Joined: Sat Jun 21, 2014 8:37 pm
Been thanked: 256 times

Re: Airwindows plugins cannot be found...

Post by glowrak guy »

In case some are interested, the AirWindows dev posts an educational video and text for each new release at

https://www.kvraudio.com/forum/viewforum.php?f=6

The text includes download links for his archives at the bottom of each post.

Here's his latest post is on page 2, so you can gauge your interest:

https://www.kvraudio.com/forum/viewtopi ... 6&t=573252

(it's mainly way over my head, but many here will comprehend the discussion. I feel smarter for at least having been in
the peanut gallery :wink: )
User avatar
LAM
Established Member
Posts: 992
Joined: Thu Oct 08, 2020 3:16 pm
Has thanked: 141 times
Been thanked: 349 times

Re: Airwindows plugins cannot be found...

Post by LAM »

glowrak guy wrote: Thu Nov 18, 2021 9:07 am In case some are interested, the AirWindows dev posts an educational video and text for each new release at

https://www.kvraudio.com/forum/viewforum.php?f=6

The text includes download links for his archives at the bottom of each post.

Here's his latest post is on page 2, so you can gauge your interest:

https://www.kvraudio.com/forum/viewtopi ... 6&t=573252

(it's mainly way over my head, but many here will comprehend the discussion. I feel smarter for at least having been in
the peanut gallery :wink: )
Actually everything, YT videos, comments, plugin zip files and more, are already posted on airwindows.com

in mix, nobody can hear your screen

glowrak guy
Established Member
Posts: 2329
Joined: Sat Jun 21, 2014 8:37 pm
Been thanked: 256 times

Re: Airwindows plugins cannot be found...

Post by glowrak guy »

OccinticLady wrote: Wed Nov 17, 2021 5:17 pm Aha...I have version 5.12 and you possibly higher...
Edit : I think I have got it. I have the free version, and that can (possibly) not add extra stuff.
Also, I dont have access to "effects" in that window (that does look diffeent, hebce my question on the version)
...
Hmm, I will NEED to buy Ardour anyway if I want to contuinue down this path... :)
You can buy the commercial variant, Harrison Mixbus, usually on sale for
around $40, and the deluxe version also goes on sale often. Same coders are key devs
in both Ardour and Mixbus. The Mixbus team aims to bring the (famed) Harrison mixing console
sound to our desktops, and it's interesting to compare a song's waveform before and after
it's processed. The daw itself get's better every year. Here is their linux support forum link:

https://forum.harrisonconsoles.com/forum-7.html
User avatar
LAM
Established Member
Posts: 992
Joined: Thu Oct 08, 2020 3:16 pm
Has thanked: 141 times
Been thanked: 349 times

Re: Airwindows plugins cannot be found...

Post by LAM »

glowrak guy wrote: Thu Nov 18, 2021 9:23 am You can buy the commercial variant, Harrison Mixbus, usually on sale for
around $40, and the deluxe version also goes on sale often.
Are you really suggesting to someone who's moving first steps in Ardour to go proprietary? Well, at least you are not suggesting Bitwig ... :lol:

in mix, nobody can hear your screen

Post Reply