I have several flac files and an image. I have succesfully created a video of the image with a single file playing in the background.
Now, I have several of these flac files and I would like to stitch them together and have the video portion be a single image.
ffmpeg -framerate 1 -i "background.jpg" -i "concat:test.flac|gold.flac" -c:v libx264 -r 30 -movflags +faststart "newout.mp4"
where test.flac and gold.flac are two of the files i want to stitch together.
Right now, only "test.flac" plays over the image. "gold.flac" does not play and the video is the exact length of only "test.flac".
Any ideas?