Hi there,
Apologies if this has already been asked. If anything, this post could serve for future forum searches and googlers.
From what I understand, it's not possible for us to use the BassVst add-on when running on Linux. I can't remember where I read this, I may have even imagined it, so if that's the case please let me know
I have a C# .net core app running on linux which broadcasts to an icecast instance using
BassEnc.BASS_Encode_CastInit()
along with
BassEnc_Mp3.BASS_Encode_MP3_Start()
.
What I'd ideally like to do though is route the stream through a VST (namely stereotool), before it makes it to the icecast server. On windows, I simply used the BassVst add on along with
BassVst.BASS_VST_ChannelSetDSP
and it worked perfectly.
I'm wondering if there's some way to achieve something similar on Linux? I read a little into piping data using stdin/out, so I was thinking I may be able to do this with standalone stereotool, but I'm not sure how I'd even begin to implement something like that within a .NET linux ecosystem. I was just wondering if anyone else had any thoughts on this at all?
Many thanks,
Dave