I’m working on a simple workflow: a HISE plugin that sends a text prompt and optionally, an audio file to a backend. The backend uses both as input for a MusicGen model, then returns the generated audio for the plugin to download and insert into the DAW.
Everything is working, except that I haven’t been able to send an audio file from the HISE plugin to the backend. I previously attempted this using File.loadAsBase64String() function but like I discussed in a recent forum topic, it didn’t seem to return a valid base64 string and in the latest update, this function also appears to be missing from the File API.
I’ve made good progress on the rest of the plugin, but I’m still stuck on this final step. I would really appreciate any guidance or clarification on whether sending a file this way is currently supported in HISE.