Re: raw audio in windows

2006-09-04 Thread Ben Sizer
Jay wrote: > So, are you saying this would be possible to do with the PlaySound > function? Fredrik is often terse. ;) I think what he's saying is that when I said you could pass a .wav file to an external application, he showed that you could pass it to a Python module instead. I think you still

Re: raw audio in windows

2006-09-01 Thread Jay
So, are you saying this would be possible to do with the PlaySound function? Fredrik Lundh wrote: > Ben Sizer wrote: > > > Not really. You'll have to convert it to .wav and then pass it to a > > helper app. > > > >

Re: raw audio in windows

2006-09-01 Thread Jay
I'm afraid I can't do that. Don't take it personally. I would send it to you, but at this time, I'm developing this app with a friend and I don't know his feelings about the program's distribution or licensing. I can't send it around until I speak to him about it. Sorry. spiffy wrote: > On 31

Re: raw audio in windows

2006-09-01 Thread Fredrik Lundh
Ben Sizer wrote: > Not really. You'll have to convert it to .wav and then pass it to a > helper app. > > >>> import winsound >>> help(winsound) Help on module winsound: NAME winsound FILE c:\python24\dlls

Re: raw audio in windows

2006-09-01 Thread Ben Sizer
Putty wrote: > Hi. I've written a small python script that was primarily meant for > use in a unix-compatible environment. It writes a bunch of raw audio > to a file and then sends the file to /dev/audio and the system plays > the audio. Very simple. > > Is there a simple way I could edit the sc

Re: raw audio in windows

2006-08-31 Thread spiffy
On 31 Aug 2006 21:34:13 -0700, "Putty" <[EMAIL PROTECTED]> wrote: >Hi. I've written a small python script that was primarily meant for >use in a unix-compatible environment. It writes a bunch of raw audio >to a file and then sends the file to /dev/audio and the system plays >the audio. Very sim

raw audio in windows

2006-08-31 Thread Putty
Hi. I've written a small python script that was primarily meant for use in a unix-compatible environment. It writes a bunch of raw audio to a file and then sends the file to /dev/audio and the system plays the audio. Very simple. Is there a simple way I could edit the script (which just uses th