FMOD Studio API... any way to directly play a .wav file?

We have a game written in Python which is using the FMOD Studio System to load sound banks and play them. Works great.

But we also have a need to play an on-the-fly .wav file. Is that possible using the FMOD Studio System? On the surface it appears the Studio System works off of the sound banks and sound events, but cannot directly load and play a .wav (where as FMOD Core can).

The specific need is this:
We want to play a digital video clip in-game. The sound for that video is on-the-fly being grabbed from the clip as a .wav file. And then we need to play that .wav file while the video shows on the screen.

Ideas?

Hi,

An option may be grabbing the core system from the Studio system: FMOD Engine | Studio API Reference - Studio::System::getCoreSystem(), and then playing a sound as you normally would.
An alternative may be a Programmer Instrument which can be passed a file path to play rather than a key: FMOD Studio | Instrument Reference - Programmer Instrument. An example of using a programmer instrument can be found in our Unity scripting examples: Unity Integration | Scripting Examples - Programer Sounds.

Hope this helps!