* Very light and optimized streaming process
* Fully written in Python
* Works with Icecast2, ShoutCast, Stream-m
+ * (NEW) Works with MySQL playlists
Because our aim is to get DeeFuzzer as light as possible it is NOT capable of re-encoding or transcoding media files for the moment.
"ogg_quality": 4,
"samplerate": 48000,
"shuffle": 0,
- "voices": "2"
+ "voices": 2
},
"record": {
"dir": "/path/to/archives",
"secret": "your access token secret key",
"tags": "parisson deefuzzer"
}
+ },
+ "station": {
+ "infos": {
+ "description": "MySQL funky playlist",
+ "genre": "Various Funk Groove",
+ "name": "My best funky station",
+ "short_name": "My_station2",
+ "url": "http://parisson.com"
+ },
+ "media": {
+ "bitrate": 96,
+ "format": "mp3",
+ "ogg_quality": 4,
+ "samplerate": 48000,
+ "shuffle": 0,
+ "voices": 2,
+ "mysql": {
+ "host": "127.0.0.1",
+ "port": 3306,
+ "user": "username",
+ "password": "password",
+ "database": "deefuzze_database",
+ "table": "deefuzze_playlist",
+ "field": "mp3"
+ }
+ }
}
}
-}
\ No newline at end of file
+}
long_description=open('README.rst').read(),
author="Guillaume Pellerin",
author_email="yomguy@parisson.com",
- version='0.7.1',
+ version='0.7.2',
install_requires=[
'setuptools',
'python-shout',