Altera_Forum
Honored Contributor
15 years agoSavig audio data in other formats
Hi there,
I have been tinkering with the media.c example using the DE2 Media Computer through the Altera Monitor Program, and I was wondering about the speech input and how it is stored. I see that it is stored in the left and right buffers in the audio core through the following code: left_buffer[buffer_index] = *(audio_ptr + 2); right_buffer[buffer_index] = *(audio_ptr + 3); ++buffer_index; This example deals with simply playing back the recorded speech. Is there any way I can manipulate this data before it is played back? Save it to other memory? Possible save it in the .WAV format? I'm relatively new to this, so I'm curious as to what can be done with this recorded speech. Thanks