Jason Woofenden

Results 6 comments of Jason Woofenden

I suggest a different way to have the ADD_TRANSLATION dialog box fix the stroke(s) you just typed, then defined: Don't pass a stroke count, or change the appearance of the...

Hi, I've been using espeak for several years and just tried aspeak-ng today. I discovered it because it just hit Debian. The first difference I noticed was that the voice...

P.S. After reading this bug report I realized that the clipping/garbling I heard is typical of software that speed up audio without changing the pitch.

Yeah, this is really bad. The code should be like this: ``` var s = fs.ReadStream(filename); s.on('data', function(d) { parser.parseString(d, false); }); s.on('end', function() { parser.parseString('', true); }); ``` See...

oh dear... I meant to report this bug agaist resmo's git-ftp. Not sure why I went with that one. I'm a little terrified about the number shell escaping bugs.

Note that if I concatenate all the parseString() args in example.js and call parseString() once like this: ``` parser.parseString("" + "" + "and lots" + "and lots of text&am" +...