From: yomguy Date: Thu, 19 Apr 2012 08:35:19 +0000 (+0200) Subject: fix doc, change buffer lengths, go to 0.6.4 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=abcf8f225cf5c6e5fc2ceaa06692d94ac48d9a5f;p=deefuzzer.git fix doc, change buffer lengths, go to 0.6.4 --- diff --git a/README.rst b/README.rst index fdb0883..bd745b3 100644 --- a/README.rst +++ b/README.rst @@ -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 `_ - * `Generic Documented `_ + * `generic `_ + * `generic and gocumented `_ * `OGG Vorbis and MP3 together `_ 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 `_ + * twitting: `start `_ and `stop `_ + * relaying: `start `_ and `stop `_ + * jingling: `start `_ and `stop `_ Then any OSC remote (PureDate, Monome, TouchOSC, etc..) can a become controller ! :) diff --git a/deefuzzer/__init__.py b/deefuzzer/__init__.py index 437480d..b5b1852 100644 --- a/deefuzzer/__init__.py +++ b/deefuzzer/__init__.py @@ -2,4 +2,4 @@ from core import * from station import * from tools import * -__version__ = '0.6.3' +__version__ = '0.6.4' diff --git a/deefuzzer/tools/player.py b/deefuzzer/tools/player.py index 629083e..b14ae72 100644 --- a/deefuzzer/tools/player.py +++ b/deefuzzer/tools/player.py @@ -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