#Node demo: Speak up
This node module (in progress) accepts a client request with input text (given by user in the Url) and turns it into spoken language by creating an audiofile. The response to this request is an audio element in the HTML body of the text that could be played.
The two significant calls are in the following form:
- localhost:4000/say/This is a text I would like to hear back
- localhost:4000/play/filename_.wav
- sanitize input from "/say/"
- create the audio file extensions to support browsers other than Safari (the current extension is wave)
- etc.