2 つの 3gp (amr) オーディオ ファイルを 1 つのオーディオ ファイルにマージする簡単な方法はありますか?
私はそれらが次々に同期するのではなく、お互いの上に同期する必要があります。私はこれを行うためにアンドロイドを使用しています。一部のオーディオ形式では、単純にバイトを追加できるとどこかで聞いたことがあります (結果が高すぎたり低すぎたりしないように注意してください)。これは、Android の 3gp/amr 形式に当てはまりますか?
Android only allows playback/recording of 3GP/AMR files. To mix audio you will need the decoded PCM data. This means you have to decode both streams mix (this is indeed adding + normalizing) and then playback. The bad side - there no way to get access to the build in AMR decoder which allows you to decode without playback.
So ... no easy way.