The idea of creating a speech synthesizer in JavaScript seem fairly incredible, but to do it in 1K characters is amazing.
First a warning - it isn't very good because it was necessary to drop plosive sounds to make it fit in less than 1K. However, for the right phrase it works very well.
The sad thing is that including the extra sound would only have pushed the size up to 1189 characters - but this is an entry in the latest JS1K competition and being under 1K characters is essential.
The speech synthesizer is based on a tiny formant synthesizer implemented in C++ by Stepanov Andrey. A formant synthesizer works by applying different input waveforms to a set of filters which modify the sound produced. This aims to model the way that the vocal chords provide an input to the vocal cavities which act as an acoustic filter.
In this case the input waveforms are simply a sawtooth or noise and most of the work is done by setting the parameters of the filter.
The cut down synthesizer supports The following sounds/phonemes:
As it uses the HTML5 Audio object to generate the sound, you will need to make sure that you visit the link using a modern browser - I tried Chrome and Firefox.
The FBI has set a new challenge for codebreakers. Amongst all the serious stuff on its site like lists of the most wanted fugitives you'll find a dot code puzzle just waiting to be solved.
If you remember Clippy then the idea that he is back might make your blood run cold - but this time it's different. Clippy, and his friends Merlin, Rover and Links, are back in the form of a JavaScrip [ ... ]