Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/voicesauce/opensauce
GNU Octave-compatible version of VoiceSauce (NO LONGER UPDATED)
https://github.com/voicesauce/opensauce
Last synced: 3 months ago
JSON representation
GNU Octave-compatible version of VoiceSauce (NO LONGER UPDATED)
- Host: GitHub
- URL: https://github.com/voicesauce/opensauce
- Owner: voicesauce
- License: other
- Created: 2013-07-31T02:11:52.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-06-30T20:27:00.000Z (over 7 years ago)
- Last Synced: 2024-04-18T22:38:18.920Z (7 months ago)
- Language: Matlab
- Homepage:
- Size: 10.7 MB
- Stars: 5
- Watchers: 5
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- low-resource-languages - opensauce - GNU Octave-compatible version of VoiceSauce. (Software / Utilities)
README
# OPENSAUCE
**THIS PROJECT IS NO LONGER BEING WORKED ON!!!**
**For the open source version of VoiceSauce, please use** [opensauce-python](http://github.com/voicesauce/opensauce-python)
OPENSAUCE is an GNU Octave-compatible version of [VOICESAUCE](http://www.seas.ucla.edu/spapl/voicesauce/), software for automated voice measurements.
## Dependencies
* [GNU Octave](https://www.gnu.org/software/octave/)
* [Tcl/Tk](http://www.activestate.com/activetcl)
* python 2.7+ as well as [SciPy](http://www.scipy.org/install.html)
* A working knowledge of the shell/command line toolsCurrently, 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](https://www.virtualbox.org/) and something like [Ubuntu](http://www.ubuntu.com/).## Installation
Clone the OPENSAUCE repository, "cd" into the directory:$ git clone https://github.com/voicesauce/opensauce.git
$ cd /path/to/opensauceIf 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.
## Quickstart
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`.
1. Change into the opensauce directory: `cd ~/opensauce`
2. Make sure your `SAUCE_ROOT` environment variable is set by typing `echo $SAUCE_ROOT` on the command line. If nothing is printed, type `export SAUCE_ROOT=$PWD`.
3. Run `make clean`, then `make run`.