transitive-bullshit / ffmpeg-concat

Concats a list of videos together using ffmpeg with sexy OpenGL transitions.
865 stars 113 forks source link

Files coming out weird after transition? #98

Open codingMASTER398 opened 3 years ago

codingMASTER398 commented 3 years ago

Hello there!

Im having some trouble. When i open the file generated, its fine, but the next video in the sequence is super weird.

Any idea why the hell this is happening?

First video: image

Second video: image

Code:

const concat = require('ffmpeg-concat') const output='Final.mp4'

        async function oneTransitionMergeVideos(){
        await concat({
        output,
        videos,
        transition: {
            name:"fadegrayscale",
            duration: 500
        }
        })
        }

        oneTransitionMergeVideos()

Please help!!!