You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB

  1. # twitterReader [![Go Report Card](https://goreportcard.com/badge/github.com/arnaucode/twitterReader)](https://goreportcard.com/report/github.com/arnaucode/twitterReader)
  2. twitter reader assistant written in Go lang
  3. uses Festival Speech Synthesis System (http://www.cstr.ed.ac.uk/projects/festival/) for the text to speech features
  4. ![twitterReader](https://raw.githubusercontent.com/arnaucode/twitterReader/master/twitterReader.png "twitterREader")
  5. to execute
  6. ```
  7. ./twitterReader
  8. ```
  9. install festival
  10. ```
  11. sudo apt-get install festival festvox-kallpc16k
  12. ```
  13. install spanish
  14. ```
  15. sudo apt-get install festvox-ellpc11k
  16. ```
  17. install catalan voice
  18. ```
  19. sudo add-apt-repository ppa:zeehio/festcat
  20. sudo apt-get update
  21. sudo apt-get install festival-ca festvox-ca-ona-hts festcat-utils
  22. ```
  23. needs the twitter account tokens in the file twitterConfig.json
  24. ```json
  25. {
  26. "username": "account_name",
  27. "consumer_key": "xxxxxxxxxxxxxx",
  28. "consumer_secret": "xxxxxxxxxxx",
  29. "access_token_key": "xxxxxxxxxx",
  30. "access_token_secret": "xxxxxxx"
  31. }
  32. ```