]> git.parisson.com Git - deefuzzer.git/commitdiff
fix doc, change buffer lengths, go to 0.6.4
authoryomguy <yomguy@parisson.com>
Thu, 19 Apr 2012 08:35:19 +0000 (10:35 +0200)
committeryomguy <yomguy@parisson.com>
Thu, 19 Apr 2012 08:35:19 +0000 (10:35 +0200)
README.rst
deefuzzer/__init__.py
deefuzzer/tools/player.py

index fdb0883754cd04080bed54749bc688607b59e9fe..bd745b355598b9240828b7fdc42f6c8a5309a495 100644 (file)
@@ -32,6 +32,11 @@ Because our aim is to get DeeFuzzer as light as possible it is NOT capable of re
 News
 =====
 
+0.6.4 is out!
+
+ * Fix install bug again (add main script to install), sorry :(
+ * reduce streaming buffer length
+
 0.6.3 Fix install bug !
 
  * setup rewritten
@@ -65,7 +70,7 @@ DeeFuzzer has now only been well tested on Linux, but should work on any other p
 You would then need to install libshout3 and liblo libraries for it. On Windows,
 an install inside Gygwin should work well.
 
-IMPORTANT: Please first install libshout3 and liblo from source OR libshout3-dev, 
+IMPORTANT: Please first install libshout3 and liblo from source OR libshout3-dev,
 liblo-dev, gnutls-dev and librtmp-dev from your own distribution package manager.
 
 Now, the easiest way to install the DeeFuzzer from a shell::
@@ -128,8 +133,8 @@ XML Configuration
 
 Some examples of markup configuration files:
 
- * `Generic <https://github.com/yomguy/DeeFuzzer/blob/master/example/deefuzzer.xml>`_
- * `Generic Documented <https://github.com/yomguy/DeeFuzzer/blob/master/example/deefuzzer_doc.xml>`_
+ * `generic <https://github.com/yomguy/DeeFuzzer/blob/master/example/deefuzzer.xml>`_
+ * `generic and gocumented <https://github.com/yomguy/DeeFuzzer/blob/master/example/deefuzzer_doc.xml>`_
  * `OGG Vorbis and MP3 together <https://github.com/yomguy/DeeFuzzer/blob/master/example/deefuzzer_mp3_ogg.xml>`_
 
 OSC Control
@@ -141,10 +146,10 @@ in the config file (see example/deefuzzer.xml again..).
 
 The available parameters are:
 
-    * play next track
-    * start/stop twitting
-    * start/stop relaying
-    * start/stop jingling
+    * `play next track <https://github.com/yomguy/DeeFuzzer/blob/master/deefuzzer/scripts/osc_player_next.py>`_
+    * twitting: `start <https://github.com/yomguy/DeeFuzzer/blob/master/deefuzzer/scripts/osc_twitter_start.py>`_ and `stop <https://github.com/yomguy/DeeFuzzer/blob/master/deefuzzer/scripts/osc_twitter_stop.py>`_
+    * relaying: `start <https://github.com/yomguy/DeeFuzzer/blob/master/deefuzzer/scripts/osc_relay_start.py>`_ and `stop <https://github.com/yomguy/DeeFuzzer/blob/master/deefuzzer/scripts/osc_relay_stop.py>`_
+    * jingling: `start <https://github.com/yomguy/DeeFuzzer/blob/master/deefuzzer/scripts/osc_jingles_start.py>`_ and `stop <https://github.com/yomguy/DeeFuzzer/blob/master/deefuzzer/scripts/osc_jingles_stop.py>`_
 
 Then any OSC remote (PureDate, Monome, TouchOSC, etc..) can a become controller ! :)
 
index 437480d6c66e547e4fcefe19f2d838217f4d18c7..b5b1852022abbcc864cf361b88342aa5b22064fb 100644 (file)
@@ -2,4 +2,4 @@ from core import *
 from station import *
 from tools import *
 
-__version__ = '0.6.3'
+__version__ = '0.6.4'
index 629083ea8cd23a201e4f253703865d8c7caf0458..b14ae722ca216ff0649306ec75c624a5a6b71ea9 100644 (file)
@@ -42,9 +42,9 @@ class Player:
     """A file streaming iterator"""
 
     def __init__(self):
-        self.main_buffer_size = 0x100000
-        self.relay_queue_size = 0x100000
-        self.sub_buffer_size = 0x10000
+        self.main_buffer_size = 0x200000
+        self.relay_queue_size = 0x80000
+        self.sub_buffer_size = 0x100000
 
     def set_media(self, media):
         self.media = media