THIS PROJECT IS NO LONGER BEING WORKED ON!!!
For the open source version of VoiceSauce, please use opensauce-python
OPENSAUCE is an GNU Octave-compatible version of VOICESAUCE, software for automated voice measurements.
- GNU Octave
- Tcl/Tk
- python 2.7+ as well as SciPy
- A working knowledge of the shell/command line tools
Currently, OPENSAUCE has only been tested on Mac OSX (Mavericks). Other *nix environments
may require some tweaking. If you're on Windows, for now your best bet is to install VirtualBox and something like Ubuntu.
Clone the OPENSAUCE repository, "cd" into the directory:
$ git clone https://github.com/voicesauce/opensauce.git
$ cd /path/to/opensauce
If you're on a Mac, here's a one-line for adding the SAUCE_ROOT environment variable to your .bash_profile:
$ echo export SAUCE_ROOT=$PWD >> ~/.bash_profile
Then, don't forget to
$ source ~/.bash_profile
or open a new Terminal session.
If you're not on a Mac, add "export SAUCE_ROOT=/path/to/opensauce/directory" to your .profile manually.
Let's assume you have a directory of sound (*.wav) files in the directory ~/sounds
and that you've cloned the opensauce repository into the folder ~/opensauce
.
- Change into the opensauce directory:
cd ~/opensauce
- Make sure your
SAUCE_ROOT
environment variable is set by typingecho $SAUCE_ROOT
on the command line. If nothing is printed, typeexport SAUCE_ROOT=$PWD
. - Run
make clean
, thenmake run
.