I'm trying to merge mp3 audio files But not successful.
Here is my code.
public static void meargeAudio(List<File> filesToMearge)
{
while (filesToMearge.size()!=1){
try {
FileInputStream fistream1 = new FileInputStream(new File(filesToMearge.get(0).getPath())); //(/storage/emulated/0/Audio Notes/1455194356500.mp3) first source file
FileInputStream fistream2 = new FileInputStream(new File(filesToMearge.get(1).getPath()));//second source file
File file1 = new File(filesToMearge.get(0).getPath());
boolean deleted = file1.delete();
File file2 = new File(filesToMearge.get(1).getPath());
boolean deleted1 = file2.delete();
SequenceInputStream sistream = new SequenceInputStream(fistream1, fistream2);
FileOutputStream fostream = new FileOutputStream(new File(filesToMearge.get(0).getPath()),true);//destinationfile
int temp;
while ((temp = sistream.read()) != -1) {
// System.out.print( (char) temp ); // to print at DOS prompt
fostream.write(temp); // to write to file
}
filesToMearge.add(0,new File(filesToMearge.get(0).getPath()));
filesToMearge.remove(1);
filesToMearge.remove(1);
fostream.close();
sistream.close();
fistream1.close();
fistream2.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
e.g
firstFileSize =12kb
secondFileSize =10kb
finalfileSize=22kb
Size is accurate But sound is missing
No error but in result i found finalfile contains only first file audio second file audio is missing.
Don't know what is the issue.if any one know the solution help me.
Thanks
Online MP3 Joiner If you have mp3 tracks that you want to consolidate, then you've come to the right place – here, you can turn your mp3 files into a single audio track that you can play on your phone, tablet, or your car's stereo! The web tool's interface is made to be simple and easy to navigate for your convenience.
Choose a file and tap on Open. In the dialog “Mix files” you can set the audio level of the current file and the imported file.
I also struggled with that and solved it using mp4parser
import com.googlecode.mp4parser.authoring.Movie;
import com.googlecode.mp4parser.authoring.Track;
import com.googlecode.mp4parser.authoring.builder.DefaultMp4Builder;
import com.googlecode.mp4parser.authoring.container.mp4.MovieCreator;
import com.googlecode.mp4parser.authoring.tracks.AppendTrack;
For your case, I believe something like this should work:
public static void mergeAudio(List<File> filesToMerge) {
String output = Environment.getExternalStorageDirectory().getAbsolutePath() + "output.mp3";
while (filesToMerge.size()!=1){
try {
String[] videoUris = new String[]{
filesToMerge.get(0).getPath(),
filesToMerge.get(0).getPath()
};
List<Track> videoTracks = new LinkedList<Track>();
List<Track> audioTracks = new LinkedList<Track>();
for (Movie m : inMovies) {
for (Track t : m.getTracks()) {
if (t.getHandler().equals("soun")) {
audioTracks.add(t);
}
if (t.getHandler().equals("vide")) {
videoTracks.add(t);
}
}
}
Movie result = new Movie();
if (!audioTracks.isEmpty()) {
result.addTrack(new AppendTrack(audioTracks.toArray(new Track[audioTracks.size()])));
}
if (!videoTracks.isEmpty()) {
result.addTrack(new AppendTrack(videoTracks.toArray(new Track[videoTracks.size()])));
}
Container out = new DefaultMp4Builder().build(result);
FileChannel fc = new RandomAccessFile(output, "rw").getChannel();
out.writeContainer(fc);
fc.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
There are a few answers suggesting that, such as:
It is too late. But still, someone might need a proper solution. That is why I am suggesting to use AudioMixer-android library.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With