abu abu
abu abu

Reputation: 7052

In HTML5 audio player play more than one audio

I am working with HTML5 audio. I have a question. Is it possible to play more than one audio on the same page, same time using HTML5 audio player ?

Upvotes: 0

Views: 113

Answers (1)

Prakash Reddy Potlapadu
Prakash Reddy Potlapadu

Reputation: 1001

yes it's possible with multiple <audio> tags for example

    <audio controls>
      <source src="horse.ogg" type="audio/ogg">
      <source src="horse.mp3" type="audio/mpeg">

    </audio>
    <audio controls>
      <source src="horse.ogg" type="audio/ogg">
      <source src="horse.mp3" type="audio/mpeg">
</audio>

Upvotes: 1

Related Questions