Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何将两个aac音频文件连接成一个。我可以使用 ffmpeg 对 mp3 执行此操作,但对于具有 m4a 扩展名的文件则没有运气。
我尝试了以下没有运气:ffmpeg -i concat:"file1.m4a\|file2.m4a" -c copy output.m4a'
ffmpeg -i concat:"file1.m4a\|file2.m4a" -c copy output.m4a'
只需使用猫:
cat file1.m4a file2.m4a >output.m4a