An open API service indexing awesome lists of open source software.

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

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 &