Created
July 4, 2015 22:18
-
-
Save miloh/3a53223b8e79812a0bb1 to your computer and use it in GitHub Desktop.
sayingthings was a script for irc TTS with festival, used by noisebridgers from 2010-2012
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
ssh -p 9595 user@persistentserver "tail -1f irc.log.Window1" | perl -lne 'BEGIN{$|++} print "$1 says $2" if m/^[^<]+<.(\S+)> ([^[]+)$/; print "$1 $2" if m/^[^<]+ \* ((\S+) ([^[].+))$/' | while read f; do echo "(SayText \"$f\")"; done | festival |
hzeller
commented
Jul 5, 2015
(my thing where I experiment with different speak engines)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment