Mel-Frequency Cepstral Coefficients. The name given to an alternate representation of speech signals based on its frequency content. Very popular way to represent a speech signal as a feature vector. Used primarily for speech recognition tasks.
0
votes
0answers
26 views
How to use MFCC vectors for classifying a single audio file?
This is probably very silly question, but I couldn't find details anywhere.
So I have an audio recording (wav file) that is 3 seconds long. That is my sample and it needs to be classified as ...
0
votes
2answers
163 views
MATLAB mfcc gmdistribution fit for Speech Recognition Program
I'm new to Matlab and doing a signal processing project(Speech Recognition). After doing some calculations, I get some values known as MFCC (Mel-Frequency Cepstral Coefficient) in a matrix. I'm now ...
0
votes
1answer
30 views
Dealing with outlier in a MFFC with DTW setup
I have a small command recognition system in which the user first records his commands then later the system tries to recognize them . The front end's feature vector are MFCC's coefficients. The back ...
0
votes
0answers
92 views
Can CoMIRVA package be used in android?
I am planning to extract MFCC features in real time so that it can be used for speech recognition in my android application. For the same I have found that there is a package available in java called ...
-1
votes
1answer
105 views
MFCC like algorithm with another scale than mel [closed]
At this moment I try to classify non-human sounds. I would like to get mfcc coefficients BUT without a using the mel scale I would like to apply my own one (for the region that is important for my ...
0
votes
0answers
57 views
Library to train GMMs from MFCC
I am trying to build a basic Emotion detector from speech using MFCCs, their deltas and delta-deltas. A number of papers talk about getting a good accuracy by training GMMs on these features.
I ...
0
votes
1answer
275 views
how to use mfcc feature to train a svm classifier for voice recognition?
I am currently in the discussion phase project with voice recognition, I use the MFCC feature extraction, but the MFCC feature returned from the function is a matrix, e,g. a (20,38) feature matrix for ...
0
votes
0answers
145 views
HMM - Training data and format
I'm wanting to implement an HMM (Hidden Markov Model) in order to identify particular words. So far, I have managed to extract the Coefficients (MFCC) of the signal and wondered if this is ok data in ...
2
votes
0answers
369 views
Dynamic Time Warping - Comparing Values
Apologies if this is in the wrong forum.
Ok, so I'm trying to compare two different speech signals and I have come into a problem. Here goes:
I have split the signal into blocks, and I have computed ...
0
votes
0answers
101 views
java.lang.VerifyError when adding an external jar(Comirva package) in Android Project
I am asking this question after doing a thorough research through many of the questions in StackOverflow. Still I am not able to solve this issue.
I am basically developing an audio processing ...
0
votes
0answers
99 views
language for speech recognition program
I am currently in the discussion phase project with voice recognition. I use the MFCC feature extraction and matching characteristics using ANN. I am confused how to use the compiler. Can I use the C ...
0
votes
2answers
529 views
MFCC - 13 Coefficients
I'm trying to compute a MFCC algorithm based upon this paper I found (http://arxiv.org/pdf/1003.4083.pdf) so what I have done so far is:
step 1) Pre–emphasis
step 2) Framing
step 3) Hamming ...
1
vote
1answer
598 views
Mel Frequency Cepstral Coefficients (MFCC) in C/C++
Is there any implementation of MFCC available in C/C++? Any source codes or libraries?
I've already found http://code.google.com/p/libmfcc/ which seem to be good.
1
vote
0answers
73 views
Debug Assertion Failed while using ActiveX control
Am newbie to this forum & MFC... Am getting Debug Assertion Failed
while using ActiveX control. Please guide me on this..My code looks
like this:
//CMyProjectDlg.h
class CMyProjectDlg: public ...
0
votes
1answer
82 views
my likelihood value resulted from gmm is correct?
I'm making a program emotion-recognition in speech.
Using a mfcc + K-mean + GMM, I got a likelihood like -15012, -43400, -8000
It was so bigger value than I though. Is it right value?
Wave file's ...
0
votes
0answers
175 views
Divide Feature Matrix for Gaussian Mixture Model input in Speaker Identification
I have a question.
I have 8 file input .wav. After I extract sound with MFCC method, I have 8 feature matrices. How to process feature maxtrices to be input for GMM?
I read a function ...
1
vote
1answer
308 views
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 ...
0
votes
0answers
95 views
what does cluster which made by MFCCs mean?
I make a emotion-recognition program using MFCC + GMM.
Because of android, I use a java package called comirva.
Using this package and emotion-speech DB, I make a GMM in each emotion like angryGMM, ...
1
vote
1answer
282 views
How to change MFCCs to PointList and GMM
I make a emotion-recognition program using comirva package.
and I have a lot of wav files about emotion like angry, happy..
to make a gmm, first, i extracted mfcc features from one of argry files.
...
0
votes
0answers
77 views
Issue in Training Hidden Markove Model
I am working on a project that i want to use HMM to predict the location of 9 points (X,Y) in sequence of images. My input data is sound and I've used MFCC to extract features from sound. So far I ...
1
vote
2answers
375 views
sound classfication using mfcc and dynamic time warping (dtw)
My objective is to classify non-speech signal for which I am using mfcc and dtw in java. However I am stuck in middle. I would appreciate any help.
I have evaluated 13 mfcc values for each frame ...
0
votes
0answers
132 views
How do I compile libmpg123 for use in a Mono for Android project
I am new to the development in Mono for Android, but it seems that it is the best of choice of framework for my project.
The application I am developing requires very fast audio processing:
Convert ...
0
votes
1answer
311 views
Porting libmfcc to C# using Bass Library
I am currently using The Bass Library for Audio Analysis which can calculate FFT and return it as an Array, libmfcc uses this Data to calculate the Value of the MFCC Coefficients which I need. (Info: ...
2
votes
0answers
181 views
Methods for determining acoustical similarity (but not fingerprinting)
I'm looking for methods that work in practise for determining some kind of acoustical similarity between different songs.
Most of the methods I've seen so far (MFCC etc.) seem actually to aim at ...
0
votes
0answers
292 views
MFCC Implementation Ok Up Until I Run the DCT
I'm trying to do a simple program to take 2 voice samples from different speakers and match them to figure out how close they are (for foreign language pronunciation). I have taken both samples, ...
6
votes
2answers
5k views
Python-Speech recognition
I have an audio file(recorded telephone conversation of 2 people). I need to separate the voices of 2 speakers automatically. I am new to speech recognition and I looked at wave module of python but ...
2
votes
2answers
794 views
Matching two series of Mfcc coefficients
I have extracted two series MFCC coefficients from two around 30 second audio files consisting of the same speech content. The audio files are recorded at the same location from different sources. An ...
0
votes
1answer
597 views
Converting from one MFCC type to another - HTK
I am working with the HTK toolkit on a word spotting task and have a classic training and testing data mismatch. The training data consisted of only "clean" (recorded over a mic) data. The data was ...
0
votes
0answers
315 views
Problem with MFCC
i'm stuck with mfcc implementation, i've already applied triangular windows to my frames to group them by frequency, so far, at this point everything goes ok, i also have an implementation of ...
0
votes
2answers
350 views
What are the differences between MFCC and BFCC?
I have implemented MFCC algorithm and want to implement BFCC. What are the differences between them and is it enough just to use another function instead of frequency to mel (2595 * Math.log10(1 + ...
1
vote
1answer
610 views
MFCC with Java Linear and Logarithmic Filters
I am implementing MFCC algorithm with Java. There is a sample code for triangular filters and MFCC at Java. Here is the link: MFCC Java However I should follow that code written in Matlab: MFCC Matlab
...
7
votes
2answers
1k views
How to generate MFCC Algorithm's triangular windows and how to use them?
I am implementing MFCC algorithm in Java.
There is a sample code here: http://www.ee.columbia.edu/~dpwe/muscontent/practical/mfcc.m at Matlab. However I have some problems with mel filter banking ...