Changing with HTML5 Audio works in Chrome but not Safari

后端 未结 2 629
礼貌的吻别
礼貌的吻别 2021-01-06 12:39

I\'m trying to make an HTML5 audio playlist that will work in each major browser: Chrome,Safari, Firefox, IE9+. However, I can\'t figure out how to change the sources in a c

2条回答
  •  生来不讨喜
    2021-01-06 12:55

    For some reason, Safari can't use the tags for swapping between songs but Chrome can. Just changing what gets loaded into the src attribute on the tag works on both Chrome and Safari but then there is the ogg vs. mp3 issue.

    I guess one way to get around this ogg vs. mp3 issue is to use Modernizr does feature detection to load the ogg mime-type in Firefox and the mp3 in Chrome/Safari. Here's a reference on that: Detecting html5 audio support with Modernizr.

提交回复
热议问题