Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Merge two audio files(not concat) in Java(API)?

Tags:

java

audio

I need to merge two audio files together. Basically place one audio file on top of another and make one file. I have seen some posts on concatenating two audio files, but none on this. Thanks for any help.

like image 691
Drew H Avatar asked Sep 24 '12 15:09

Drew H


People also ask

Can we merge two audio?

When you need to merge several songs into a single composition, the easiest way is to use our Online Audio Joiner application. It works in a browser window and you can join MP3 and other format files without installing the software on your computer. Open Online Audio Joiner website.

What commands do you need to use to merge an audio?

Combine audio files with the Command Prompt You can do that by entering cd in the Prompt followed by the folder path. Enter this command in the Prompt: /copy /b audio file1. mp3 + audio file2. mp3 audio file3.


1 Answers

I recommend you take a look at JSyn. I would discourage you to attempt to do it yourself, since it can get complicated with multiple audio formats. It supports a lot more as well.

like image 200
Neil Avatar answered Nov 15 '22 01:11

Neil