1. 程式人生 > >html5中video視頻只有聲音沒有圖像

html5中video視頻只有聲音沒有圖像

沒有 編碼 格式工廠 brush ima ide 使用 技術分享 com

解決方案:

1、使用視頻標簽;

<video width="352" height="264" controls autobuffer>
    <source src="video/hjh.mp4" type=‘video/mp4; codecs="avc1.42E01E, mp4a.40.2"‘></source>
</video>

2、使用格式工廠更改視頻編碼格式 為H264。

技術分享

改成如下:

技術分享

<video width="352" height="264" controls autobuffer>
<source src="video/hjh.mp4" type=‘video/mp4; codecs="avc1.42E01E, mp4a.40.2"‘></source>
</video>

html5中video視頻只有聲音沒有圖像