Chris Stiles wrote:
[color=blue]
> Is there a library available for python that will enable me to process .wav
> files ?
>
> Preferably extensible so I can write handlers for dealing with the non audio
> sections.[/color]
On Wed, 26 Jan 2005 16:28:08 +0000, rumours say that Chris Stiles
<vp5n-cxtl@spamex.com > might have written:
[color=blue]
>
>Hi --
>
>Is there a library available for python that will enable me to process .wav
>files ?[/color]
import aifc, wave, chunk
for a start.
[color=blue]
>Preferably extensible so I can write handlers for dealing with the non audio
>sections.[/color]
--
TZOTZIOY, I speak England very best.
"Be strict when sending and tolerant when receiving." (from RFC1958)
I really should keep that in mind when talking with people, actually...
Christos "TZOTZIOY" Georgiou <tzot@sil-tec.gr> writes:[color=blue]
> On Wed, 26 Jan 2005 16:28:08 +0000, rumours say that Chris Stiles
> <vp5n-cxtl@spamex.com > might have written:
>[color=green]
>>
>>Hi --
>>
>>Is there a library available for python that will enable me to process .wav
>>files ?[/color]
>
> import aifc, wave, chunk
>[/color]
AFAICT wave was very much focused on reading the audio sections of .wav files,
whereas I wanted to do more than just that. Whereas aifc was sufficiently
different to make reading .wav files a hit and miss affair.
Chris Stiles wrote:[color=blue]
> Is there a library available for python that will enable me to[/color]
process .wav[color=blue]
> files ?
>
> Preferably extensible so I can write handlers for dealing with the[/color]
non audio[color=blue]
> sections.[/color]
You will probably find everything you're looking for here:
Comment