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.
2つのaacオーディオファイルを1つに連結する方法を知っている人はいますか。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