On Sat, Jul 13, 2024 at 4:26 AM Rick Keniuk <daddyo...@gmail.com> wrote:
> I have tried the following simple concatenation command which worked > perfectly only it outputs just the video and the first audio stream. > ffmpeg -f concat -i videos.txt -c copy output.mp4 > Hi Rick, By default only the first audio stream is output. Selection of streams can be done with the -map option, and -map 0 is a shortcut for "map all" - see https://trac.ffmpeg.org/wiki/Map Can you try the following : ffmpeg -f concat -i videos.txt -c copy -map 0 output.mp4 Don't know about chapter markers though... KR, Vincent > _______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".