Hi, I need some help... I've installed an icecast server but I can't use shout because it's always talking about "bad password". My icecast server use crypted password. I think the problem came from mkpasswd. I always get a different password when I use mkpasswd toto. Help me please. <p><p><p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
At 11:17 AM 29/10/2002 -0700, you wrote:>I'm doing a top on my server (ices2 and icecast2 from CVS) and ices is >using 14% of my cpu cycles - bastard! One channel is doing reencoing >and when I just play an ogg without reencoding. The ogg file was >encoded at 64kbs 44khzIs this praise, a bug report, a question, or other? If you're having a problem with the software, it helps if you state what the problem _is_. Michael <p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
I'm doing a top on my server (ices2 and icecast2 from CVS) and ices is using 14% of my cpu cycles - bastard! One channel is doing reencoing and when I just play an ogg without reencoding. The ogg file was encoded at 64kbs 44khz <!-- Dial up connections stream --> <instance> <hostname>**********</hostname> <port>8000</port> <password>*********</password> <mount>/lowbandwidth.ogg</mount> <encode> <nominal-bitrate>16000</nominal-bitrate> <samplerate>11000</samplerate> <channels>1</channels> </encode> </instance> --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
On Tue, 29 Oct 2002, Richard wrote:> I'm doing a top on my server (ices2 and icecast2 from CVS) and ices is > using 14% of my cpu cycles - bastard! One channel is doing reencoing > and when I just play an ogg without reencoding. The ogg file was > encoded at 64kbs 44khzDon't know if it helps, but you're not using the same format as I am for our re-encodes.> <!-- Dial up connections stream --> > <instance>{snip}> <encode> > <nominal-bitrate>16000</nominal-bitrate>hmmmm. I've not used this tag. You'd either have to use a managed mode or select quality by bitrate. <p>> <samplerate>11000</samplerate>> <channels>1</channels> > </encode> > </instance>you don't seem to have the resample and downmix steps. I'm not sure that what you've got there would even work (I don't know). But using code based on the examples, here's how I'd do what I *think* you want to do: <instance> <hostname>host.domain</hostname> <port>8000</port> <password>P455W0rd</password> <mount>/mountpoint.ogg</mount> <encode> <quality>-1</quality> <samplerate>11025</samplerate> <channels>1</channels> </encode> <downmix>1</downmix> <resample> <in-rate>44100</in-rate> <out-rate>11025</out-rate> </resample> </instance> Good luck! Geoff. <p><p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.