extract and display AudioPlayer file name
-
Any advice on how to best extract the name of the loaded file in AudioPlayer to be then displayed in UI Label element?
-
@musictop Use this to get the name, it will return the name plus the path
If the audio file is inside the "AudioFiles" folder in the project it will add this
{PROJECT_FOLDER}...filename
and then you have to filter out the actual name
const var AudioLoopPlayer1 = Synth.getAudioSampleProcessor("Audio Loop Player1"); Console.print(AudioLoopPlayer1.getFilename());
-
@ulrik Thank you!