Reputation: 111
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?
Upvotes: 3
Views: 1632
Reputation: 25220
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.
Upvotes: 2