Well, if you used an installer application to install python on windows, then .py files are already associated with python interpreter, so running a script is just a matter of typing it's name in the command line.Howard wrote: Thanks Bart! Er... I don't want to read the entire Python documentation for this - what's the precise syntax in the command line if I e.g. put your script and "test.wav" in Python's root directory, and want it to build "test.h2p"? I'm always getting the "invalid syntax" message.
You have to provide two parameters - the first one is the name of the input wave file, and the second is the name of the output preset.
To make it a bit clearer on how to use this program, I'll give you an example:
wavToZ2.py and example.wav are in C:\convert directory. To convert example.wav, you must (in command line) type:
Code: Select all
C:
cd \convert
wavToZ2.py example.wav example.h2p
Anyway if there's a demand for it, I can make a simple GUI for this script
cheers,
Bart


