日期:2021/05/27 天气:晴

背景描述

ios拍摄视频默认格式是.MOV格式,上传视频回显的时候,只有声音没有视频,所以需要把上传默认的.MOV格式转换为.MP4格式

  1. const ffmpegInstaller = require('@ffmpeg-installer/ffmpeg');
  2. const ffmpeg = require('fluent-ffmpeg');
  3. ffmpeg.setFfmpegPath(ffmpegInstaller.path);
  4. // IMG_1046.MOV是要上传的视频
  5. ffmpeg('IMG_1046.MOV')
  6. .format('mp4')
  7. .on('error', function(err) {
  8. console.log('An error occurred: ' + err.message);
  9. })
  10. .on('end', function() {
  11. console.log('Processing finished !');
  12. })
  13. .save('output.mp4');