获取视频某一秒的截图
const handleGetVideoThumb = async function (url, options = {}) {
if (typeof url !== "string") {
console.error("URL must be a string");
return;
}
// 默认参数
const ...