From 1752d234189375decbac67d41cdddc23b43e9af7 Mon Sep 17 00:00:00 2001 From: roblan Date: Mon, 9 Oct 2017 22:11:17 +0200 Subject: [PATCH 1/3] Update README.md --- python_server/README.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/python_server/README.md b/python_server/README.md index debae70..11b33c3 100644 --- a/python_server/README.md +++ b/python_server/README.md @@ -3,7 +3,20 @@ The `pivumeter` Python library creates a socket-based server to which the Pi VU Meter ALSA plugin can connect and stream left/right VU amplitude and FFT transform frequency bins. -Currently to run this code you will need to clone the devel branch of Pi VU Meter, install it, and -tweak your `/etc/asound.conf` to change the `output-device` to `socket`. +## Installing + +Currently to run this code you will need to clone the `devel` branch of Pi VU Meter and compile it from source. + +You may use our automated setup to do so, specifying the output device to `socket` +``` +setup.sh blinkt +``` +You can also compile and set up thing yourself - just follow [this guide](../README.md#installing) but change the `output-device` to `socket`. + +After that you need to install pytjon pivumeter library. +Just go to the `pivumeter/python_server/library` folder and run +``` +sudo python setup.py install +``` Finally, run the desired example from the Python Server examples folder and play some audio! From 367c7b1241d01b9f2066f2147afc6125ba540164 Mon Sep 17 00:00:00 2001 From: roblan Date: Sun, 29 Oct 2017 18:09:53 +0100 Subject: [PATCH 2/3] Update README.md --- python_server/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_server/README.md b/python_server/README.md index 11b33c3..273ad64 100644 --- a/python_server/README.md +++ b/python_server/README.md @@ -9,7 +9,7 @@ Currently to run this code you will need to clone the `devel` branch of Pi VU Me You may use our automated setup to do so, specifying the output device to `socket` ``` -setup.sh blinkt +setup.sh socket ``` You can also compile and set up thing yourself - just follow [this guide](../README.md#installing) but change the `output-device` to `socket`. From 4ec8c68e15344865b410d9f974786ff112b036f6 Mon Sep 17 00:00:00 2001 From: roblan Date: Sun, 29 Oct 2017 18:10:32 +0100 Subject: [PATCH 3/3] Update README.md --- python_server/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_server/README.md b/python_server/README.md index 273ad64..322434a 100644 --- a/python_server/README.md +++ b/python_server/README.md @@ -13,7 +13,7 @@ setup.sh socket ``` You can also compile and set up thing yourself - just follow [this guide](../README.md#installing) but change the `output-device` to `socket`. -After that you need to install pytjon pivumeter library. +After that you need to install python pivumeter library. Just go to the `pivumeter/python_server/library` folder and run ``` sudo python setup.py install