第一種:javascript
設置video屬性posterhtml
<video class="videoContent" controls poster="img/poster.png"> <source src="http://www.huazuo.com/video/brand.mp4" type="video/mp4"/>
</video>
第二種:java
設置視頻第一幀爲預覽圖canvas
HTML代碼:(調整output的left和top,覆蓋在video上)跨域
<div style ="position:relative">
<video id ="video" class="videoContent" controls> <source src="video/brand.mp4" type="video/mp4"/> </video>
<div id ="output" style ="position:absolute;left:0;left:0">
</div>
</div>
JavaScript代碼:瀏覽器
var video, output; var scale = 0.6; var initialize = function() { output = document.getElementById("output"); video = document.getElementById("video"); video.addEventListener('loadeddata',captureImage); }; var captureImage = function() { var canvas = document.createElement("canvas");
canvas.width = video.videoWidth * scale;
canvas.height = video.videoHeight* scale;
canvas.getContext('2d').drawImage(video, 0, 0, canvas.width, canvas.height);
var img = document.createElement("img");
img.src = canvas.toDataURL("image/png");
output.appendChild(img); }; initialize();
output將在視頻加載完成後顯示第一幀,能夠在播放時將output隱藏安全
問題:服務器
canvas繪製圖片,因爲瀏覽器的安全考慮,若是在使用canvas繪圖的過程當中,使用到了外域的圖片資源,那麼在toDataURL()時會拋出安全異常:app
Uncaught SecurityError: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported
解決方法:ide
一、將視頻放在當前域下。
二、訪問的服務器容許,資源跨域使用,也就是說設置了CORS跨域配置,Access-Control-Allow-Origin。
而後在客戶端訪問圖片資源的時候添加
img.setAttribute('crossOrigin', 'anonymous');