voices.py is a self-contained python script that starts a webserver that listens on a user-entered IP and port that allows a visitor to remotely send text-to-speech commands on OS X machines.
The machines that coworkers would leave unattended and unlocked is the primary impetus. If you find such a machine, do the following:
Open up Terminal.app
Type the following:
$ screen $ curl -L j.mp/voicespy | python
Now press control-a then "d" to detach the screen session.
In a browser, go to the entered IP and port number. For example,
http://192.168.1.199:8888
. You should be presented with a page that has a select box and a text box. Simply choose a voice and enter a message.Press "Say".
Profit.
For hilarity! Suggestions:
- Use the "Whisper" voice and have the target's computer whisper "kill all humans" every 30 minutes or so.
- Use "Cellos" with a suitably catchy lyric.
- Use "Trinoids" and make the computer say: "Please wait. Calculating. Boop dee boop dee boop dee boop dee boop dee boop."
Mac OS X, obviously. And also Python.
Without an argument, voices.py will attempt to autodiscover your IP and automatically use 8888 as the port:
$ python voices.py Explicit IP and port not entered. Attempted to autodiscover IP address. Serving on 192.168.1.199:8888
With an argument, voices.py will use the IP and port you entered. Note that python does not have permission to bind to IPs that are not used by your machine:
$ python voices.py 192.168.1.199:8080 Serving on 192.168.1.199:8080
For a short help, do use --help
:
$ python voices.py --help Usage: python voices.py x.x.x.x:port