fluent-ffmpeg / node-fluent-ffmpeg

A fluent API to FFMPEG (http://www.ffmpeg.org)
MIT License
7.64k stars 874 forks source link

Getting error #1141

Open kamleshwebtech opened 2 years ago

kamleshwebtech commented 2 years ago

I am getting error "Failed to download resource "jemalloc_bottle_manifest" while installing ffmpeg by brew. any suggestion? Thanks a lot.

mandaputtra commented 2 years ago

Hi, instead installing ffmpeg on your machine I ussualy use ffmpeg-static and ffprobe static

And then I use it like these :

const Ffmepg = require('fluent-ffmpeg')
const ffmpegStatic = require('ffmpeg-static')
const ffprobeStatic = require('ffprobe-static');

ffmpeg.setFfmpegPath(ffmpegStatic)
ffmpeg.setFfprobePath(ffprobeStatic)