Is this a safe way to generate random sound files on a web server?

>>> from os import popen
>>> merge = popen('sox uppercase-b.wav uppercase-a.wav merge.wav')

Thanks

Norman


Kent Johnson wrote:
On Tue, Jan 20, 2009 at 4:49 AM, Norman Khine <[email protected]> wrote:
does anyone know of a python module which would create a single sound file
based on the randomly generated string?

i have looked at the python wave module, but if i am not wrong this works
with one file at the time.

I think you can do this with the wave module. The code would be
something like this:

open output file and set number of channels, etc
for each letter of input:
  open wave file for the letter
  read frames from letter file
  write frames to output file
close output file

Kent

_______________________________________________
Tutor maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/tutor

Reply via email to