js 顯示視頻封面
顯示視頻封面,但是設備錄的視頻第一貞畫面都是黑的,設置顯示固定時間的內容封面;
<video :class="`showupimg video_${sitem.psqid}`"> <source :src="$api.showImageUrl + sitem.useranswer[0]" /> </video> //初始化執行 getVideoinfo(v) { let that = this; this.$forceUpdate(); this.$nextTick(() => { let ref = `.video_${v.psqid}`; let video = document.querySelector(ref); if (video) { video.addEventListener("loadedmetadata", function () { //v.duration = that.gettime(video.duration); //獲取時長 video.currentTime = 2; // 第2幀位置 }); } }); },
明顯這只是封面圖片,是不能播放的,播放視頻我用了阿里的VueAliplayerV2組件,兼容更好

浙公網安備 33010602011771號