FFmpeg how generate a sequence of videos with bash
问题 i try to write an .sh that read a folder create a playlist of mp4 files and then generate an only big video with a sequence of all videos find in the folder, and encode it for dash: printf "file '%s'\n" ./*.mp4 > playlist.sh ffmpeg -f concat -safe 0 -i playlist.sh -c copy concat.mp4 Till now i follow the demux concat official guido to ffmpeg website. Without result, also the following give me "more than 1000 frames duplicated between videos of the sequence" ffmpeg -f concat -i playlist.sh -c