Created
January 10, 2011 22:38
-
-
Save rogeriopvl/773611 to your computer and use it in GitHub Desktop.
Reads tweets containing given keyword using the OSX text to speech
This file contains 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
<?php | |
/** | |
* Reads tweets containing given keyword using the OSX text to speech | |
*/ | |
if (!isset($argv[1])) { exit ("Search keyword needed.\n"); } | |
$username = TWITTER_USERNAME; | |
$password = TWITTER_PASSWORD; | |
$keyword = $argv[1]; | |
$fp = fopen("http://$username:[email protected]/1/statuses/filter.json?track=$keyword", 'r'); | |
while($data = fgets($fp)) | |
{ | |
$tw = json_decode($data, true); | |
$user = $tw['user']['screen_name']; | |
$tweet = $tw['text']; | |
echo (escapeshellcmd("$user says: $tweet\n")); | |
exec (escapeshellcmd("say $user says: $tweet")); | |
} | |
fclose($fp); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment