wav file to float

  • Thread starter Thread starter [b2:ss]
  • Start date Start date
B

[b2:ss]

I have to create a float value list from a stereo wav file. i need
following datas:

time, left channel value,right channel value

how can i do this?

i also need to read the file's bitrate...

any hint or link would be useful. thanx in advance.
 
Hi Be-Two,
I have to create a float value list from a stereo wav file.

I would start here:

http://www.wotsit.org/search.asp?page=8&s=music

From this page, you can download the .WAV file format specications, and
armed with the knowledge, you could write an application to parse the .WAV
files.

I haven't done this myself, but in the simplest case when the file is not
compressed (PCM mode), you should be able to read the integer channel values
almost directly once you skip the file header.

Hope this helps!

--
Regards,

Mr. Jani Järvinen
C# MVP
Helsinki, Finland
(e-mail address removed)
http://www.saunalahti.fi/janij/
 
Back
Top