다음 명령을 사용하여 여러 파일을 성공적으로 결합 할 수 있습니다.
ffmpeg -f concat -i input.txt -codec copy output.mp4
이 명령의 유일한 문제점 은 다음 내용으로 input.txt 라는 텍스트 파일에서 파일 경로를 읽어야한다는 것입니다 .
file 'C:\Users\fabio\Downloads\Super\Sharks\01.mp4'
file 'C:\Users\fabio\Downloads\Super\Sharks\02.mp4'
file 'C:\Users\fabio\Downloads\Super\Sharks\03.mp4'
파일에서 파일 경로를 읽을 필요없이 동일한 목표를 달성 할 수있는 방법이 있습니까? 나는 운없이 다음을 시도했다.
ffmpeg -f concat -i file "C:\a\b\01.mp4" file "C:\a\b\02.mp4" -codec copy output.mp4
ffmpeg -f concat -i "C:\a\b\01.mp4" "C:\a\b\02.mp4" -codec copy output.mp4
다른 명령을 사용해야합니까?