Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Audio editing in Android

Tags:

android

audio

I am looking for some audio editing library which can help to mix two audio files into a single audio file. I don't mean concatenating file one after other. I want to mix second audio file in middle of random seek time of the first file as follow.

Track T1 : 1111111111 Track T2 : 2222

Output expected : 11112222111111

I want to achieve this for android application.

like image 688
Javal Nanda Avatar asked Nov 25 '11 06:11

Javal Nanda


2 Answers

The only interesting and useful library I have found for audio editing is Ringdroid (available here: RingDroid Github).

You can check the source code in order to get some insights on how to do what you want.

Hope this helps for now!

like image 117
Dimitris Makris Avatar answered Sep 22 '22 12:09

Dimitris Makris


The description of this project looks promising: musicg-sound-api .

This API allows developers to extract audio features and operate audio data like reading, cutting and trimming easily from an inputstream

However, the documentation is a little sparse.

like image 40
AShelly Avatar answered Sep 18 '22 12:09

AShelly