https://github.com/dawncold/raspsound
play sound on raspberry via wechat
https://github.com/dawncold/raspsound
Last synced: about 1 year ago
JSON representation
play sound on raspberry via wechat
- Host: GitHub
- URL: https://github.com/dawncold/raspsound
- Owner: dawncold
- Created: 2016-02-19T12:58:47.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-20T08:40:03.000Z (over 10 years ago)
- Last Synced: 2025-03-25T19:46:41.921Z (over 1 year ago)
- Language: Python
- Size: 16.6 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Raspsound
play wechat voice via raspberry pi
## install dependencies
sudo apt-get install redis-server nginx
sudo pip install requests tornado rq rq-dashboard redis
## config nginx (optional)
config nginx with `proxy_pass` to `http://localhost:5000`
```
location ^~ /wx {
proxy_pass http://localhost:5000;
}
```
## run
redis-server &
rq-dashboard &
rq worker &
python main.py &