Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any MFCC library can be used in android?

My team is making a emotion-recognition in speech app.

To get mfcc, we use comirva package.

The problem is that AudioInputStream needed to create AudioPreProcessor can't be used in android.

So we have been finding some kind of alternative.

Is there any way to get mfcc in android?

like image 439
joejo Avatar asked Dec 29 '25 06:12

joejo


1 Answers

You can replace AudioInputStream with just InputStream in comirva sources, it's a trivial modification. AudioInputStream purepose is just to store and manage stream format, the MFCC computation doesn't need it, it can process the raw data.

like image 118
Nikolay Shmyrev Avatar answered Dec 31 '25 22:12

Nikolay Shmyrev