0

I want to merge two or more videos which is stored s3 into a single video in nodejs.I tried to implement using fluent-ffmpeg , I am getting an error that "Cannot find ffprobe".

Vikasini N
  • 41
  • 2

1 Answers1

0

this might help

const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;
const ffmpeg = require('fluent-ffmpeg');
ffmpeg.setFfmpegPath(ffmpegPath);
Ahmed Magdy
  • 1,054
  • 11
  • 16