Questions tagged [fluent-ffmpeg]

Fluent ffmpeg is a Node.js library (A fluent API to FFMPEG)

This library abstracts the complex command-line usage of ffmpeg into a fluent, easy to use node.js module. In order to be able to use this module, make sure you have ffmpeg installed on your system (including all necessary encoding libraries like libmp3lame or libx264).

github repo

369 questions
0
votes
1 answer

FFmpeg Fade Out Audio Filter (afade) not being Applied to Track Clipped Iteratively

I am trying to split a track into multiple fixed-sized (30-second) clips, each with a (5-second) fade-in / fade-out at the beginning and end, respectively. I'm using node-fluent-ffmpeg to interface with ffmpeg and saving each of the ffmpeg commands…
0
votes
1 answer

Transpiled webpack bundle does not export hyphenated package name via require

I am importing fluent-ffmpeg with: import ffmpeg from 'fluent-ffmpeg' in one file. After running webpack, I receive this error: Uncaught Exception: ReferenceError: fluent is not defined I looked inside the transpiled file and I found fluent-ffmpeg…
Patrick
  • 1,410
  • 2
  • 19
  • 37
0
votes
0 answers

How to use fluent-ffmpeg module inside node.js scripts?

I am using fluent-ffmpeg for compressing the images. Using command prompt png images compression working fine. I tried to use node script for compressing images. Compressing jpg images working fine, but it is not supporting for png images. When…
-1
votes
1 answer

Merge Image with GIF - FFMPEG

I would like to take an image and add it to the start of a gif file. image should be displayed for 2 seconds then the gif will play. no looping is needed. Edit 1: I've also been looking at this: https://github.com/jtlapp/gifwrap Edit 2: I want to…
Dean Van Greunen
  • 5,060
  • 2
  • 14
  • 28
-1
votes
1 answer

Ffmpeg segment doesn't show file size update in real time

I'm trying to run ffmpeg mp3 stream with segmentation for each hour. Everything is working perfectly, except for one thing: when i run the command, the file size doesn't grow in real-time as i need, it only grows in packages of 256k. Is there a way…
Lucas Cardoso
  • 106
  • 1
  • 8
-1
votes
2 answers

Ffmpeg error in Docker Container: ffmpeg exited with code 1:

I am currently working on a project and almost ready to deploy, but there is one problem: the code which is working perfectly on my Ubuntu 16.04 (Elementary OS Loki) machine does not work in Docker container. What might be the problem in my…
Uğur Kaya
  • 2,287
  • 3
  • 15
  • 23
-2
votes
0 answers

screen recorder/live screen recorder with ffmpeg

I need your help to run ffmpeg code that can be used for screen recording that zooms in, pans and zooms out.
-2
votes
1 answer

I want to use fluent-ffmpeg module

I want to ask about video convert in JS. I chose the fluent-ffmpeg module to do that. But, when I imported that in JS file, something happen like the picture below: So, I went in package.json file, and this module exists in file: What's the…
DAN
  • 13
  • 3
-2
votes
1 answer

Trim multiple clips with one command of FFmpeg

I have a video called 1.mp4 I want to extract 17+17= 34 total clips from this video with one FFmpeg command Each clip should have a unique name like 1a 1b 1c 1d and so on. 17 clips will have a 1920x1080 dimension and remaining 17 will have…
1 2 3
24
25