Streaming sounds, only one at once and buffer in memory release?

Hi,

We have two questions on Streaming. Due to some circumstances we’ll need to call some ‘short sounds’ from Stream, along with the already known ‘delay’ thing:

1 - We’ve read in several places that Streaming audio files could be played just only one at time:

https://www.fmod.com/resources/documentation-api?version=2.02&page=core-guide.html#streaming-settings

and

https://www.fmod.com/resources/documentation-api?version=2.02&page=glossary.html#stream

But after some tests, we couldn’t notice any issues or ‘audio cuts’ triggering several instances of an Streamed audio at once. What is that ‘only one at time’ limitation related to?

2 - Is the buffer in memory used to play the Stream file released / cleaned when the instance finishes playing automatically or should we handle it somehow in code?

Many thanks!

  1. There is an upper limit to how many streams you can have before you get noticeable performance issues, the upper limit isn’t necessarily “1”, but it is best to keep streaming assets to a minimum because they don’t scale in the same way regular assets do.
  2. Streams are cleaned up in the same manner as other sounds. If you created it with System.createSound or System.createStream you will need to stop it / release it when you are done with it. If you are playing it via an FMOD.Studio.EventInstance, stopping/releasing the event instance is enough to clean up the underlying stream.