From 719262aa9e1f42884273a659ab028036e81b928c Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 4 May 2009 11:40:57 +0000 Subject: [PATCH] fix audio_info and then yp relays ! --- deefuzzer.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/deefuzzer.py b/deefuzzer.py index ee5cf03..7f6c431 100755 --- a/deefuzzer.py +++ b/deefuzzer.py @@ -244,11 +244,10 @@ class Station(Thread): self.channel.password = self.station['server']['sourcepassword'] self.channel.mount = '/' + self.short_name + '.' + self.channel.format self.channel.public = int(self.station['server']['public']) - self.channel.audio_info = { 'SHOUT_AI_BITRATE': self.bitrate, - 'SHOUT_AI_SAMPLERATE': self.samplerate, - 'SHOUT_AI_QUALITY': self.ogg_quality, - 'SHOUT_AI_CHANNELS': self.voices, - } + self.channel.audio_info = { 'bitrate': self.bitrate, + 'samplerate': self.samplerate, + 'quality': self.ogg_quality, + 'channels': self.voices,} self.set_playlist() self.lp = len(self.playlist) self.channel.open() -- 2.39.5