+ 1
i have added an audio file in my code but its not working in the browser..what should i do?
3 ответов
+ 10
<audio controls>
<source src= "audio.ogg" type= "audio/ogg">
<source src= "audio.mp3" type= "audio/mpeg">
</audio>
• Background Audio does not work in old browsers, this code provides a control.
• You need to insert the correct path in the "src" attribute, if the audio file is in the same folder of your ".html" file, you can follow my example, (naturally change "audio.mp3" with your audio's name)
• Can you provide your code? I can't guess the problem without details, unfortunately i'm not a wizard. :(
+ 6
@Maz Yeah you're right. 😂 She only ask what's her problem but didn't detailed her question.
@Simrankaur Saluja maybe we can help if you'll provide more details about your question ;)
+ 1
here is an example of playing audio using p5.sound library, there's much more to it if you want to mess around (audio analysing, distortion, effects ecc).
https://code.sololearn.com/Wor8sh903qdo/?ref=app