cancel
Showing results for 
Search instead for 
Did you mean: 

How to play audio in SAP UI5 ??

Rewati_Raman
Employee
Employee
0 Kudos

Hello All,

I need to play an audio in SAP UI5 , I tried using below method but it is showing error "DOMException: Failed to load because no supported source was found."

var audio =newAudio('audio_file.mp3');
audio.play();
View Entire Topic
richard-zhao
Employee
Employee

Hello, Rewati. This issue is because of your .mp3 file could not be found. There must be something wrong with your file path. I can play mp3 by using this path on my local machine. Check your path, please. The path you are using means rootpath/audio_file.mp3.Is that correct?

var audio = new Audio("mockdata/001_A.mp3");
audio.play();