-deefuzzer (0.6.2-1beta) unstable; urgency=low
+deefuzzer (0.6.1-1) unstable; urgency=low
* new HTTP steamer based on pycurl to handle stream-m servers (webm streaming)
+ see http://code.google.com/p/stream-m/
* live webm relaying works good, webm playlist reading NEED testing
* new <station><server><type> parameter ('icecast or 'stream-m')
-- Guillaume Pellerin <yomguy@parisson.com> Thu, 12 Jan 2012 13:22:22 +0100
-
For older changes, please see http://svn.parisson.org/deefuzzer
-
# Server
self.short_name = self.station['infos']['short_name']
- self.mount = '/' + self.short_name
if 'type' in self.station['server']:
self.type = self.station['server']['type'] # 'icecast' | 'stream-m'
+ self.mount = '/publish/' + self.short_name
else:
self.type = 'icecast'
+ self.mount = '/' + self.short_name
if 'stream-m' in self.type:
self.channel = HTTPStreamer()