用JavaScript检测视频格式支持
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用JavaScript检测视频格式支持相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>用javascript检测视频格式支持</title> <script type="text/javascript"> function checkVideo() { var myVideo = document.createElement(‘video‘); if (myVideo.canPlayType) { if ("" != myVideo.canPlayType(‘video/mp4;codecs="avc1.64001E"‘)) { document.write("您的浏览器支持h264编码。<br>"); } if ("" != myVideo.canPlayType(‘video/ogg; codecs="vp8"‘)) { document.write("您的浏览器支持vp8编码。<br>"); } if ("" != myVideo.canPlayType(‘video/ogg; codecs="theora"‘)) { document.write("您的浏览器支持theora编码。"); } } else { document.write("您的浏览器不支持要检测的视频格式。"); } } window.onload = function () { checkVideo(); } </script> </head> <body> </body> </html>
以上是关于用JavaScript检测视频格式支持的主要内容,如果未能解决你的问题,请参考以下文章
如何使用模块化代码片段中的LeakCanary检测内存泄漏?
12mmaction2 行为识别商用级别X3D复现 demo实现 检测自己的视频 Expanding Architecturesfor Efficient Video Recognition(代码片段