기타
ffmpeg mp3 merge
woo11
2023. 5. 12. 13:48
까먹을까봐 정리해두는 글입니다.
ffmpeg을 이용해서 여러 mp3 파일을 하나로 합치는 방법입니다.
1. input.txt파일에 병합할 파일 경로를 아래와 같이 적습니다.
file 'first.mp3'
file 'second.mp3'
file 'third.mp3'
2. ffmpeg 을 이용해 병합합니다.
ffmpeg -f concat -i input.txt output.mp3
참고자료
https://stackoverflow.com/questions/66783126/i-want-to-merge-mp3-files-on-ubuntu
I want to merge mp3 files on ubuntu
I want to merge mp3 files into one file using this command : ffmpeg -i "concat:file_1.mp3|file_2.mp3|file_3.mp3|file_4.mp3" -c copy test.mp3 But i get this error : [mp3 @ 0x5629416b4880]
stackoverflow.com