浏览器音频兼容和ffmpeg的音频转码使用

1、百度搜索浏览器对于音频文件的兼容,排在前面的文章大部分是复制粘贴很久以前的文章,容易误导搜索资料的人,

因此重新验证整理下。

  以Firefox浏览器为例,Firefox对于mp3格式音频的支持在发布版本21时就已经支持了(2013年)。

下载Firefox各个版本,然后在audio标签上引入mp3格式文件,在v20的Firefox不能播放,在V21上Firefox可以播放。

Firefox浏览器历史版本下载地址:,

Firefox和mp3的一些讨论资料地址:https://code.i-harness.com/zh-CN/q/4b1f00

   重新整理了一个表,罗列当前各主流浏览器对音/视频的支持状况:

浏览器音频兼容和ffmpeg的音频转码使用

注意:

Safari浏览器对于wav音频格式和mp4视频格式的支持,需要把页面部署到web服务器里面。
如果只是单纯的用Safari浏览器打开磁盘的一个静态页面,会发现不支持这两种格式

同上Opera浏览器对于ogg视频格式的支持,也需要把页面部署到web服务器上。

 1.2、测试代码:

浏览器音频兼容和ffmpeg的音频转码使用

浏览器音频兼容和ffmpeg的音频转码使用

<html lang="cn"> <head> <meta charset="utf-8"/> <title>音频/视频</title> <style type="text/css"> body{ padding: 20px 50px; } table td, table th{ padding: 5px 10px; text-align: center; } table th { color: blue; font-size: 20px; } table tr td:nth-of-type(1) { color: purple; font-size: 20px; font-weight:bold;; } .first-th { font-size: 12px; color:black;position: relative; } .th-div1 { position: absolute; } .th-div2 { position: absolute; left: 50%; margin-left: -40px; width: 100%; line-height: 1px; border-top: 1px solid black; transform: rotate(30deg); } .th-div3 { position: absolute; top: 6px; right: 4px; } tbody tr:nth-of-type(1) { background-color: #ffffcc; } tbody tr:nth-of-type(2) { background-color: #ccffcc; } tbody tr:nth-of-type(3) { background-color: #ccccff; } tbody tr:nth-of-type(4) { background-color: #FFF0F5; } .testOne{ margin: 20px 5px; padding: 10px; border: 1px dashed black; } .playBtn { margin-left: 20px; width: 120px; height: 50px; background-color: #fff; border: 1px solid black; border-radius: 50px; line-heght: 50px; } </style> </head> <body> <table border="1" cellspacing="0"> <thead> <tr> <th class="first-th"> <div class="th-div1">格式</div> <div class="th-div2"></div> <div class="th-div3">浏览器</div> </th> <th>Chrome</th> <th>Firefox</th> <th>Opera</th> <th>Safari</th> <th>IE11</th> <th>Edge</th> </tr> </thead> <tbody> <tr> <td>OGG</td> <td>YES</td> <td>YES</td> <td>YES</td> <td>NO</td> <td>NO</td> <td>YES</td> </tr> <tr> <td>MP3</td> <td>YES</td> <td>YES</td> <td>YES</td> <td>YES</td> <td>YES</td> <td>YES</td> </tr> <tr> <td>WAV</td> <td>YES</td> <td>YES</td> <td>YES</td> <td>YES</td> <td>NO</td> <td>YES</td> </tr> <tr> <td>MP4</td> <td>YES</td> <td>YES</td> <td>YES</td> <td>YES</td> <td>YES</td> <td>YES</td> </tr> <tr> <td>WebM</td> <td>YES</td> <td>YES</td> <td>YES</td> <td>NO</td> <td>NO</td> <td>YES</td> </tr> </tbody> </table> <ul>注意: <li>Safari浏览器对于wav音频格式和mp4视频格式的支持,需要把页面部署到web服务器里面。<br/> 如果只是单纯的用Safari浏览器打开磁盘的一个静态页面,会发现不支持这两种格式 </li> <li> 同上Opera浏览器对于ogg视频格式的支持,也需要把页面部署到web服务器上。 </li> </ul> <p></p> <div class="testOne"> <h3>1、测试一下,三个audio标签,src依次为ogg、mp3、wav格式文件</h3> <audio controls="controls" src="../img/file/Friendships.ogg">不支持该格式播放</audio> <audio controls="controls" src="../img/file/Friendships.mp3">不支持该格式播放</audio> <audio controls="controls" src="../img/file/Friendships.wav">不支持该格式播放</audio> </div> <div class="testOne"> <h3>2、audio标签兼容写法,一个audio标签,里面设置多个source标签</h3> <audio controls="controls" id="audio"> <source src="../img/file/Friendships.ogg" /> <source src="../img/file/Friendships.mp3" /> <source src="../img/file/Friendships.wav" /> </audio> <button onclick="audioManage()" class="playBtn">播放/暂停</button> </div> <script type="text/javascript"> //手动控制音频的播放 function audioManage(){ var obj = document.getElementById('audio'); if (obj.paused){ //表示是暂停,下一步播放 obj.play(); } else{ //播放中,下一步暂停 obj.pause(); } } </script> <br/> <div class="testOne"> <h3>3、测试一下,三个video标签,src依次为mp4、ogg、WebM格式文件</h3> <video controls="controls" src="../img/file/jia.mp4"></video> <video controls="controls" src="../img/file/jia.ogg"></video> <video controls="controls" src="../img/file/jia.WebM"></video> </div> <div class="testOne"> <h3>4、测试一下,兼容写法, 一个video标签,三个souce依次引用mp4、ogg、WebM</h3> <video controls="controls" id="video" width="300" height="150"> <source src="../img/file/jia.mp4"/> <source src="../img/file/jia.ogg"/> <source src="../img/file/jia.WebM"/> </video> <button onclick="videoManage()" class="playBtn">播放/暂停</button> <button onclick="changeBigVideo()" class="playBtn">宽高增大</button> <button onclick="changeSmallVideo()" class="playBtn">宽高减小</button> <script type="text/javascript"> var video = document.getElementById('video'); var videoBigInterval = null, videoSmallInterval = null; //视频暂停和继续播放 function videoManage(){ if (videoBigInterval){ clearInterval(videoBigInterval); } if (videoSmallInterval){ clearInterval(videoSmallInterval) } if (video.paused){ video.play(); } else{ video.pause(); } } //video标签宽高变大 function changeBigVideo(){ console.log('...start....big....') if (videoBigInterval){ clearInterval(videoBigInterval); } if (videoSmallInterval){ clearInterval(videoSmallInterval) } videoBigInterval = setInterval(function(){ var oldW = video.width, oldH = video.height; console.log('big --> width: ', oldW, ', height: ', oldH) video.width = oldW*1.05; video.height = oldH*1.05; }, 1000) } //video标签宽高变小 function changeSmallVideo(){ console.log(".....start ..small...") if (videoBigInterval){ clearInterval(videoBigInterval); } if (videoSmallInterval){ clearInterval(videoSmallInterval) } videoSmallInterval = setInterval(function(){ var oldW = video.width, oldH = video.height; console.log('small --> width: ', oldW, ', height: ', oldH) video.width = oldW*0.95; video.height = oldH*0.95; }, 1000) } </script> </div> </body> </html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zydjdg.html