]> git.parisson.com Git - piplayer.git/commitdiff
update README
authorGuillaume Pellerin <yomguy@parisson.com>
Thu, 25 Jul 2013 16:24:39 +0000 (18:24 +0200)
committerGuillaume Pellerin <yomguy@parisson.com>
Thu, 25 Jul 2013 16:24:39 +0000 (18:24 +0200)
README.md
scripts/piplayer
setup.py

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..abdd0daff42c578740c07737493518c895314b4a 100644 (file)
--- a/README.md
+++ b/README.md
@@ -0,0 +1,38 @@
+===========================================
+PiPlayer : audio sample player for the Rpi
+===========================================
+
+a gstreamer based media sample player for the Raspberry Pi trigerred by GPIO or OSC callbacks.
+  
+
+Usage
+======
+```
+  sudo piplayer DIR
+```
+
+Example
+==========
+```
+  sudo piplayer /path/to/dir/
+```
+
+OSC
+====
+
+     * port : 12345
+     * play address : /play/1
+GPIO
+=====
+
+     * play channel : 22
+     * play method : PUD_DOWN between PIN 1 (3.3V Power) and PIN 15 (GPIO 22)
+     * stop channel : 24
+     * stop method : PUD_DOWN between PIN 1 (3.3V Power) and PIN 18 (GPIO 24)
+
+DAEMON
+=======
+
+See etc/
index fdb1c7848b46816c7d69dd49c13d2445bd29ec55..23713751d110d1ffcd43464e45659e346a9c621a 100755 (executable)
@@ -21,6 +21,7 @@
 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 # Boston, MA 02111-1307, USA.
 
+import sys
 
 from piplayer.player import PiPlayer
 
index 53c4db7ae70764b5232f3e368bd01e75fe7a68d1..2e4e7ee346e8005217c5204caeaca7616b4d3beb 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ setup(
   version = '0.2',
   install_requires = [
         'setuptools',
-        'liblo',
+        'pyliblo',
         'RPi.GPIO',
         ],
   platforms=['OS Independent'],