PiPlayer : audio sample player for the Rpi
---------------------------------------------
-a gstreamer based media sample player for the Raspberry Pi trigerred by GPIO or OSC callbacks.
+a minimalistic gstreamer based media sample player for the Raspberry Pi trigerred by GPIO or OSC callbacks.
Usage
$ cp -ra etc/* /etc/
$ update-rc.d piplayer defaults 5 1
```
+
+OPTIONS
+--------
+
+Some properties and options (like "auto next" and "looping") are tunable in the PiPlayer class:
+
+```
+class PiPlayer(object):
+
+ osc_port = 12345
+ gpio_channel_play = 22
+ gpio_channel_stop = 24
+ playing = False
+ looping = False
+ auto_next = False
+ alsa_device = 'hw:0'
+
+ ...
+```
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
+# Doc : https://code.google.com/p/raspberry-gpio-python/wiki/Inputs
+
DEBUG = False