-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no suitable loudspeaker layout for higher order Ambisonic or arbitrary input signals #28
Comments
Seconded. I too am unable to move to VST3, due to this specific limitation. |
I would also like to see this sort of support for 3D audio. The VST3 format isn't well suited to plugins with 64 inputs and outputs. |
@ygrabit it's been over one year since the first report https://sdk.steinberg.net/viewtopic.php?f=4&t=549 we really need an option to set discrete channels for plugins which don't follow a specific speaker arrangement. The current way of implicitly encoding the speaker arrangement type in the bitset itself (by using different onsets) is rather hacky. As you've already noted, the speaker arrangement type should really be a seperate field. The VST2SDK already did this; also it didn't impose any channel limit. It really is a shame that the VST3SDK is less flexible in this respect than its predecessor. Maybe Steinberg could add a That being said, VST3 plugins can actually use discrete channels. In the implementation of @DanielRudrich here's a hack for the meantime: if the DAW gives you more than 16 channels via Apart from that, you could ask Justin from REAPER to do the following:
This could be coordinated with the JUCE guys. It's probably quicker than waiting for Steinberg to update their SDK... |
I just ran into the same problem. Starting out with the latest JUCE version that doesn't provide the VST2 SDK anymore, making an Ambisonics plugin for orders higher than three becomes pretty troublesome, and downgrading to VST2 comes with it's own set of problems :( |
Please fix this issue. I've just started porting my plug-ins to VST3, which is fine for 3rd order Ambisonics, but not being able to just specify input and output channel numbers is a real pain. |
Please fix this issue! |
@ygrabit I noted that Wavelab 11 now has 7o Ambi interleaved file support. Without solving this issue how can we develop plugins to serve this channel scope? |
+1 for this. VST2 was much better in this regard!
cheers
Bruce
…On Wed, 6 Oct 2021 at 11:43, stefan kazassoglou ***@***.***> wrote:
@ygrabit <https://github.com/ygrabit>
I have also left a comment on the developer forum, but I would like to
stress its importance as this is becoming more and more problematic.
I noted that Wavelab 11 now has 7o Ambi interleaved file support. Without
solving this issue how can we develop plugins to serve this channel scope?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#28 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAFPHH6FLTJKKOJITLY5C7LUFQR5BANCNFSM4GQTSRLQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
@ygrabit @scheffle |
In the meantime, some ambisonic plugin developers, like https://www.ssa-plugins.com/ have started to use multiple output busses to achieve higher channel counts. It is ugly, but it works. Still, it is a shame that there is no proper solution and the VST3 SDK is a real setback in this respect. |
Just want to also voice support for this since it doesn't seem to be moving along. Have been following the issue since the initial thread was created back in 2018. Maybe there will be a solution before the 4 year anniversary rolls around? This is a big blocker for many audio professionals needing access to spatial audio tools. Which is not just limited to research institutions btw... Spatial audio formats like HOA are only growing in popularity. When can we expect a fix? Also +1 to the much more extensible and future proof solution of discrete channel layouts, as opposed to the strictly limited set of named standard configurations. Often spatial audio formats are output-independent and can be decoded/rendered to any sort of arbitrary configuration. |
Any news about this? It'd be great to be able to support at least up to 7th order Ambisonics natively in VST3 and, especially, arbitrary speaker layouts (like in VST2). |
Yes please! |
Any news on that topic ? Adding at least kAmbi4thOrderACN and kAmbi5thOrderACN would be a real benefit. Thanks |
It would be awesome to get some support for this issue please. |
It seems that the the latest JUCE v7.0.9 in Combination with Reaper doesn't properly support ambisonics orders >3 https://forum.juce.com/t/ambisonics-4-5-6-7-broken-in-vst3-7-8-reaper-latest/56662 steinbergmedia/vst3sdk#28
With VST2 being deprecated, a lot of higher order Ambisonics plugin manufacturers struggle with portion to VST3, as there's no suitable loudspeaker layout for higher order Ambisonics, speaking up to 7th order -> 64 channels.
Especially, plug-ins with variable order struggle, as there's no
discreteChannel
layout anymore, especially as discrete layouts aren't allowed to be the default layout (well at least JUCE states that with an assertion).Even when forced, plug-ins hosts won't send more than 24 channels of audio (22.2?), as it seems to be the layout with the highest amount of channels. However, that number varies from host to host.
Decoders/renderers to 3d audio loudspeaker arrays also struggle as those arrays don't have to be regular/standard layouts.
It's not solely a problem with Ambisonic plug-ins, as there are other multi-channel plug-ins out there, which support an arbitrary number of input channels (sources) which will be encoded into a different format, e.g. up to 64 sources into a panner. Also these 64 input channels need a layout for arbitrary inputs.
The issue has been already discussed here:
https://sdk.steinberg.net/viewtopic.php?f=4&t=549
https://sdk.steinberg.net/viewtopic.php?f=4&t=624
So, please add a configuration for discrete channels, as already proposed by Yvan Grabit in the first linked thread!
The text was updated successfully, but these errors were encountered: