ARA - Audio-Random-Access - a new offline processing plugin standard - will this take off?
-
Music Engineer Music Engineer https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=15959
- KVRAF
- 4379 posts since 8 Mar, 2004 from Berlin, Germany
in the current issue of the german "Keys" magazine, i stumbled upon a small article which announced, that Celemony in collaboration with Presonus have established a new plugin standard for offline processing plugins:
http://www.celemony.com/cms/index.php?id=ara#top
in the mag, it is written that an SDK should be available, but i don't find anything at the melodyne website about that. actually, VST has some offline interfacing capabilities for a long time - but i never looked deeply into it because it doesn't seem to be well supported by hosts anyway. it would be great to finally see a standard for offline audio processing that is widely supported. could ARA fill this gap? i certainly hope so.
thoughts, ideas, comments?
http://www.celemony.com/cms/index.php?id=ara#top
in the mag, it is written that an SDK should be available, but i don't find anything at the melodyne website about that. actually, VST has some offline interfacing capabilities for a long time - but i never looked deeply into it because it doesn't seem to be well supported by hosts anyway. it would be great to finally see a standard for offline audio processing that is widely supported. could ARA fill this gap? i certainly hope so.
thoughts, ideas, comments?
-
- KVRAF
- 1940 posts since 16 Aug, 2004 from Vienna, Austria
http://www.celemony.com/cms/index.php?id=ara does it.
I've written to Celemony to get the SDK some weeks ago and had it some hours later. Looks nice; I'm still trying to wrap my head around whether / how to marry it with my realtime hosts.
I've written to Celemony to get the SDK some weeks ago and had it some hours later. Looks nice; I'm still trying to wrap my head around whether / how to marry it with my realtime hosts.
-
- KVRAF
- 10170 posts since 2 Jan, 2005 from somewhere in the woods
i suppose, they don't develop Melodyne Studio any longer and try to find a different and smart solution.
"It dreamed itself along"
-
Music Engineer Music Engineer https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=15959
- KVRAF
- Topic Starter
- 4379 posts since 8 Mar, 2004 from Berlin, Germany
? does what? did my link not work?arakula wrote:http://www.celemony.com/cms/index.php?id=ara does it.
i guess, i could do the same. but actually i think it would be much better, if they would just release the SDK publically. probably they will do at some stage and i think, i'll wait for that.I've written to Celemony to get the SDK some weeks ago and had it some hours later. Looks nice;
i wish you good luck for that. VSTHost is my primary host for testing plugins and doing sound-design. thanks for keeping the good work going.I'm still trying to wrap my head around whether / how to marry it with my realtime hosts.
-
- KVRist
- 231 posts since 15 Apr, 2012 from Toronto, ON
It was actually funny to read this just now as I've been doing a little research into VSTs offline capabilities, but as you said Robin, it's not widely supported by hosts. I'll be keeping an eye on this as well.
-
- KVRist
- 205 posts since 12 Feb, 2009 from Perú
From what I've read, they're not trying to set a new standard, they're just trying to push some "extensions" to the existing ones - something similar to the
"Cockos Extensions". Frankly, I don't see Steinberg (or Apple?) adopting third party extensions to their own standard in any of their DAWs...
"Cockos Extensions". Frankly, I don't see Steinberg (or Apple?) adopting third party extensions to their own standard in any of their DAWs...
- KVRAF
- 2569 posts since 4 Sep, 2006 from 127.0.0.1
for offline vst processing (which i suppose would be mostly for FX plugins) i'd thought you simply load the VST and pass it an audio buffer (the full length of the audio material) 
It doesn't matter how it sounds..
..as long as it has BASS and it's LOUD!
irc.libera.chat >>> #kvr
..as long as it has BASS and it's LOUD!
irc.libera.chat >>> #kvr
-
- KVRist
- 231 posts since 15 Apr, 2012 from Toronto, ON
Yeah, more or less. The problem is that many hosts implement plugins as insert or send effects, so offline capabilities are not possible. I was just testing out an offline VST plugin I'm making in WaveLab and it wouldn't even load the plugin because I had set my plugin category to kPlugCategOfflineProcess. When I changed it to kPlugCategEffect, it showed up but it had no buttons for OK or anything that allowed me to apply the effect.antto wrote:for offline vst processing (which i suppose would be mostly for FX plugins) i'd thought you simply load the VST and pass it an audio buffer (the full length of the audio material)
-
AdmiralQuality AdmiralQuality https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=83902
- Banned
- 6657 posts since 10 Oct, 2005 from Toronto, Canada
I don't follow.LemonLime wrote:The problem is that many hosts implement plugins as insert or send effects, so offline capabilities are not possible.
But then I also don't see what the difference between offline and online is, to the plug-in. If you need to know what a sample n samples ahead is, wait for it. If you need to know what a sample n samples ago was, remember it.
- KVRAF
- 2569 posts since 4 Sep, 2006 from 127.0.0.1
think of a bi-directional IIR filter, this needs to know the whole audio material
It doesn't matter how it sounds..
..as long as it has BASS and it's LOUD!
irc.libera.chat >>> #kvr
..as long as it has BASS and it's LOUD!
irc.libera.chat >>> #kvr
-
- KVRAF
- 1940 posts since 16 Aug, 2004 from Vienna, Austria
"Wait for it" means "introduce unnecessary latency" (that could be avoided by knowing the audio data in advance).AdmiralQuality wrote:But then I also don't see what the difference between offline and online is, to the plug-in. If you need to know what a sample n samples ahead is, wait for it. If you need to know what a sample n samples ago was, remember it.
"Remember it" means "unnecessarily duplicate the audio buffers" (the host knows the audio data and can provide access to them without the need to duplicate them).
They got some nice videos online on the Celemony web site that should help you understand the advantages - and also the circumstances in which it makes sense.
Last edited by arakula on Tue Aug 07, 2012 11:08 am, edited 1 time in total.
-
AdmiralQuality AdmiralQuality https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=83902
- Banned
- 6657 posts since 10 Oct, 2005 from Toronto, Canada
Yeah but offline implies infinite latency. "I refuse to process any of it until I've seen all of it!"
I may be a little biased towards real time.
I may be a little biased towards real time.
-
- KVRian
- 1270 posts since 9 Sep, 2005 from Oulu, Finland
That's a terrible "solution" that requires the user to wait in real time for the plugin to "record" the audio. Also if the user edits anything in the host after such recording is complete, the audio has to be recorded into the plugin again. This is severely annoying, inefficient and time wasting.AdmiralQuality wrote:If you need to know what a sample n samples ahead is, wait for it. If you need to know what a sample n samples ago was, remember it.
I've also got the ARA SDK (by asking for it, not a big trouble and not that much different from the hassle of obtaining the VST SDK from Steinberg with all the registration etc needed). I haven't still looked into doing much with it, as Studio One is at the moment the only host implementing ARA support for plugins. Also at the moment Melodyne is the only plugin implementing it, so it's a bit tricky to make my HourGlass app support that. (I'd need to ensure I have the facilities to debug problems even after the demo period of Melodyne would be over, and that would require purchasing Melodyne which I am not so sure at the moment I'd like to do...) I am not that sure either if HourGlass would gain much additional value from the ability to host Melodyne via the ARA API as the use purposes of the 2 apps/plugins seem to be in contradiction. (HourGlass is clearly a mangler type of thing, whereas Melodyne is much more geared towards making corrective processings to pitch and time.)
Maybe some plugin developer would like to be adventurous and do, say, an ARA based dynamics processor?
-
AdmiralQuality AdmiralQuality https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=83902
- Banned
- 6657 posts since 10 Oct, 2005 from Toronto, Canada
No, sorry. It's actually an offline plug-in that needs the audio recorded beforehand. Obviously if I need the value of a sample a minute from now, that's not going to work live.Xenakios wrote:That's a terrible "solution" that requires the user to wait in real time for the plugin to "record" the audio. Also if the user edits anything in the host after such recording is complete, the audio has to be recorded into the plugin again. This is severely annoying, inefficient and time wasting.AdmiralQuality wrote:If you need to know what a sample n samples ahead is, wait for it. If you need to know what a sample n samples ago was, remember it.
And audio can be rendered as fast as the CPU can handle it, usually much faster than real time. An offline plug-in needs to spend the exact same amount of CPU time to get the same result.
I can think of two effects where random access is needed. Normalization and Backwards. (Both of which should be host functions.)
-
- KVRian
- 1270 posts since 9 Sep, 2005 from Oulu, Finland
This all is about audio that has already been previously recorded/imported into the host, not about realtime live playing/input, so don't use that as a red herring...If you have no use for processing like that, fine, but don't discourage other people from exploring such options.AdmiralQuality wrote:No, sorry. It's actually an offline plug-in that needs the audio recorded beforehand. Obviously if I need the value of a sample a minute from now, that's not going to work live.Xenakios wrote:That's a terrible "solution" that requires the user to wait in real time for the plugin to "record" the audio. Also if the user edits anything in the host after such recording is complete, the audio has to be recorded into the plugin again. This is severely annoying, inefficient and time wasting.AdmiralQuality wrote:If you need to know what a sample n samples ahead is, wait for it. If you need to know what a sample n samples ago was, remember it.

