赞
踩
jq
//获取视频信息
function getVideoInfo(fileurl){
var videoObj = document.createElement("video");
videoObj.src = fileurl;
//成功提示
videoObj.onloadedmetadata = () => {
$('[name=vw]').val(videoObj.videoWidth) //宽
$('[name=vh]').val(videoObj.videoHeight) //高
$('[name=video_duration]').val(videoObj.duration.toFixed(0)) //时长
};
//错误提示
videoObj.onerror = function (){
$('[name=vw]').val('')
$('[name=vh]').val('')
$('[name=video_duration]').val('')
}
}
php
// 获取合集封面图尺寸信息
$imageInfo = getimagesize($save_data['cover_url']);
// 提取宽度和高度
$vw = $imageInfo[0];
$vh = $imageInfo[1];
$save_data['vw'] = $vw; //宽
$save_data['vh'] = $vh; //高
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。