vue js视频截图

本文介绍了如何使用Vue.js开发一个功能,实现用户上传文件,处理视频文件并在视频准备好播放时截取屏幕截图,并将截图转换为Base64格式。涉及到的技术包括HTML5的FileAPI、CanvasAPI和Base64编码。
摘要由CSDN通过智能技术生成
<template>
  <div>
    <div>
      <el-button @click="uploadFile">上传</el-button>
    </div>
    <div>
      <img :src="imgUrl" width="300">
    </div>
  </div>
</template>

<script setup>
import { ref } from 'vue';
const imgUrl = ref("")

function uploadFile(e) {
  var el = document.createElement("input")
  el.type = "file"
  el.onchange = function () {
    loadVideo(el.files[0])
  }
  el.click()
}

function loadVideo(file) {
  //加载视频
  const video = document.createElement("video");
  video.src = window.URL.createObjectURL(file)
  video.currentTime = 1
  //视频准备就绪
  video.oncanplay = function () {
    videoScreenshot(video, file)
  }
}

function videoScreenshot(video, file) {
  //创建画布,绘制视频图像
  const canvas = document.createElement("canvas");
  canvas.width = video.videoWidth
  canvas.height = video.videoHeight
  const ctx = canvas.getContext('2d')
  ctx.drawImage(video, 0, 0, video.videoWidth, video.videoHeight)

  //画布图片
  imgUrl.value = canvas.toDataURL();
  console.log('screenshotDataUrl', imgUrl.value);

  //转成文件
  var imageFile = base64toFile(imgUrl.value, file.name);
  console.log('imageFile', imageFile);
}

function base64toFile(base64Str, fileName) {
  let arr = base64Str.split(',');
  console.log(arr[0])
  let mime = arr[0].match(/:(.*?);/)[1];
  let bstr = atob(arr[1]);
  let n = bstr.length;
  let u8arr = new Uint8Array(n);
  while (n--) {
    u8arr[n] = bstr.charCodeAt(n);
  }
  return new File([u8arr], fileName, { type: mime })
}
</script>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值