transitive-bullshit / ffmpeg-concat

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

Error when concat video without audio #162

Open dtcuong63 opened 5 months ago

dtcuong63 commented 5 months ago

It works when I concat videos with audio, but when I try to concat the same videos without audio, it show the error below:

Error: ffmpeg exited with code 4294967268: frame= 774 fps= 12 q=-0.0 Lsize=N/A time=00:00:26.19 bitrate=N/A speed=0.402x Conversion failed!

I used the ffmpeg conmmand below to remove the audio from the video:

ffmpeg -i input1.mp4 -an output1.mp4

What can I do to make it work? Thank you