Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Progress for concat return wrong % #361

Open
@gabrielstuff

Description

@gabrielstuff

Using a simple :

fluentffmpeg('./video_intro.mp4')
  .input('./opaskp.mp4')
  .input('./video_outro.mp4')
  .on('error', function(err) {
    console.log('An error occurred: ' + err.message);
  })
  .on('end', function() {
    console.log('Merging finished !');
  })
  .on('progress', function(progress) {
    console.log('Processing: ' + progress.percent + '% done');
  })
  .videoCodec('libx264')
  .mergeToFile('./full_movie.mp4', './temp');

progress.percent return 827.4509803921568% at end

Something is apparently wrong.

btw I love the lib :)

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions