How to check if the browser can play mp4 via html5 video tag?

后端 未结 5 957
名媛妹妹
名媛妹妹 2020-12-02 22:59

How to check if the browser can play mp4 via html5 video tag?

5条回答
  •  离开以前
    2020-12-02 23:31

    Alex Polo's reply is not bad but incomplete try this to check if the codec is supported too:

    var mp4Supported = (!!document.createElement('video').canPlayType('video/mp4; codecs=avc1.42E01E,mp4a.40.2'));
    

    Likewise for ogg, webm and so on ... Works with audio too :)

提交回复
热议问题