您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“在HTML5中如何通過video上傳預(yù)覽圖片和視頻”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“在HTML5中如何通過video上傳預(yù)覽圖片和視頻”這篇文章吧。
當(dāng)一收到上傳圖片視頻并可以動態(tài)設(shè)置視頻顯示的海報(bào)幀的需求時(shí),主要想的是怎么樣解析視頻并獲取保存每幀的圖片,百度出來的大多是類似下面這種需要播放video并點(diǎn)擊截圖的,或者是用php ffmpeg擴(kuò)展,跟需求不一致,有點(diǎn)抓狂了,然后就先做了視頻圖片的預(yù)覽功能,進(jìn)而對設(shè)置海報(bào)幀換了種思路,通過輸入設(shè)置video開始播放的時(shí)間,取消自動播放和控制條,這樣用戶看到的就是一張圖片
/*預(yù)覽*/
$('.qtuploader__items').on('click', '[name="viewVideoPicBtn"]', function() {
var parent = $(this).closest('.qtab__page');
var video = $(this).closest('.qtuploader__itemsbd').find('video');
var srcStr = '', htmlStr = '';
if($(this).siblings('.qtuploader__picinputbox').hasClass('is-error')){
$.fn.toast({
'parentDom': parent,
'classes': 'isorange',
'top': '0',
'spacing': 0,
'toastContent': '請?jiān)O(shè)置正確范圍的海報(bào)幀',
'autoHide': 3000,
'position': {
'top': '5px',
'left': '50%'
}
});
return;
}
if (video.length > 0) {
var thumbHeight = setSize(video)[0];
var thumbWidth = setSize(video)[1];
srcStr = video.attr('src');
htmlStr = '<div class="qtuploader__view"><div class="qtuploader__mask"></div><div class="qtuploader__thumb" ><video controls width="' + thumbWidth + '" height="' + thumbHeight + '" src="' + srcStr + '">您的瀏覽器不支持 video 標(biāo)簽</video></div></div>';
}
parent.append(htmlStr);
parent.find('.qtuploader__view video')[0].currentTime = $(this).siblings('.qtuploader__picinputbox').find('.qtuploader__picinput').val();
parent.find('.qtuploader__view').fadeIn();
});
/*設(shè)置海報(bào)幀預(yù)覽時(shí)間*/
$('.qtuploader__items').on('keyup', '.qtuploader__picinput', function() {
var parent = $(this).closest('.qtuploader__picinputbox');
var video = $(this).closest('.qtuploader__itemsbd').find('video');
var strVal = $.trim($(this).val());
console.log(strVal)
if (strVal == '') {
parent.addClass('is-error');
parent.find('.qverify__font').text('請?jiān)O(shè)置海報(bào)幀');
} else if (!(/^[0-9]*$/.test(strVal))) {
parent.addClass('is-error');
parent.find('.qverify__font').text('請輸入數(shù)字');
} else if (video.length > 0 && strVal > video[0].duration) {
parent.addClass('is-error');
parent.find('.qverify__font').text('不超過(' + video[0].duration + ')');
console.log('111---' + video[0].duration)
} else {
parent.removeClass('is-error');
parent.find('.qverify__font').text('請?jiān)O(shè)置海報(bào)幀');
}
})
/*關(guān)閉預(yù)覽*/
$(document).undelegate('.qtuploader__mask', 'click');
$(document).delegate('.qtuploader__mask', 'click', function() {
$(this).closest('.qtuploader__view').fadeOut('normal', function() {
$(this).closest('.qtuploader__view').remove();
})
})
/*設(shè)置預(yù)覽大小*/
function setSize(element) {
var thumbWidth = 0, thumbHeight = 0, arr = [];
var winWidth = $(window).width(), winHeight = $(window).height();
var imgWidth = element.width(), imgHeight = element.height();
if (imgWidth > imgHeight) {
thumbHeight = parseInt(winHeight - 200);
thumbWidth = parseInt((1920 * thumbHeight) / 1080);
} else {
thumbHeight = parseInt(winHeight - 200);
thumbWidth = parseInt((1080 * thumbHeight) / 1920);
}
arr.push(thumbHeight, thumbWidth)
return arr;
}
以上是“在HTML5中如何通過video上傳預(yù)覽圖片和視頻”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。