Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How can analyse sound files for speech recgnition through C?

analyse files sound speech
0
Posted

How can analyse sound files for speech recgnition through C?

0

Answer Hello Speech recognition and voice recognition are the subject of many university research project. The University of Ghent is one that is quite actif on the subject. This is just to say that it is more a question of the algorithm you use than the underlying language. To analyse sound files you need to: 1. Convert the sound file into an internal structure in the C-program (this structure is preferable a linear representation of the sound samples, not an encoded structure such as ALAW or ULAW, MP3 or any other representation). This may require a specific decoding routine if the source file is not adapted (e.g., conversion of mp3 to .wav like format). If memory is limited, the implementation will be somewhat more complex as you need to read the input file on a need basis by the recognition algorithm. 2. Operate the speech recognition algorithm on the samples (contained in an array in the simpliest case for example). This will imply filtering of the samples and voice/speech feature

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123