i use ffmpeg to encode my videos to be ready for mpeg dash process:
ffmpeg -y -i legend.mp4 -c:a copy -c:v libx264 -x264opts 'keyint=48:min-keyint=48:no-scenecut' -r 24 -b:v 1500k -maxrate 1500k -bufsize 1000k -vf "scale=-1:816" out.mp4
This command line work fine, and i wonder to know how to create a mp4 encoded file like above from a sequence of videos? I try to get a faster process, and i think that i don't need to encode separately all videos and after create a sequence (a big video) with post production software.. I wish to resolve all by a sigle command line, Is there a way to give a playlist for input to get only one output video within the sequence of the playlist all with the same encoding assuming that all videos have same frame rate and same resolution? Thanks, Dan