.WAV processing library ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Chris Stiles

    #1

    .WAV processing library ?


    Hi --

    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.

    --
    regards, chris
  • Fredrik Lundh

    #2
    Re: .WAV processing library ?

    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]

    Kåre Sjölander's Snack library might be useful:



    </F>



    Comment

    • Christos TZOTZIOY Georgiou

      #3
      Re: .WAV processing library ?

      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...

      Comment

      • Chris Stiles

        #4
        Re: .WAV processing library ?

        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.

        --
        regards, chris

        Comment

        • alia_khouri@yahoo.com

          #5
          Re: .WAV processing library ?


          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:
          The official home of the Python Programming Language


          AK

          Comment

          Working...