From jra at febo.com Mon Apr 1 19:42:09 2002 From: jra at febo.com (John Ackermann N8UR) Date: Mon, 01 Apr 2002 14:42:09 -0500 Subject: [icecast] Simple streamer help Message-ID: <24569218.1017672129@WUSJA129861-8HP> Hi -- I am trying to add limited streaming capability to an existing mp3 setup I'm running for internal use at my house. I'm using the "mp3sb" package with a php-based web front-end to pipe music to my stereo; now I want to extend that so I can use the same web interface to stream to computers in the house. I don't want to run shout or another streaming front-end (unless it can be invisible) as I already have a user interface that provides database functions, playlists, etc. and I'm quite happy with it. All I want to do is hack the mp3sb server script to pass the user-selected mp3 file to icecast rather than to mpg123. So, what I'm looking for is guidance on the simplest way to stream an mp3 file into an icecast server. What do I need to feed it, and how? I'll be working with a perl script that can provide the song's title, file location, genre, etc., and I'm sure I can hack it to pass the actual mp3 bitstream to icecast if that's needed. I hope this description makes sense. Can anyone guide me in how to accomplish this? Thanks, John Ackermann jra at febo.com ---- John Ackermann N8UR jra at febo.com http://www.febo.com President, TAPR n8ur at tapr.org http://www.tapr.org
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jra at febo.com Mon Apr 1 20:20:59 2002
From: jra at febo.com (John Ackermann N8UR)
Date: Mon, 01 Apr 2002 15:20:59 -0500
Subject: [icecast] Re: Simple streamer help
In-Reply-To: <24569218.1017672129@WUSJA129861-8HP>
Message-ID: <26898598.1017674458@WUSJA129861-8HP>
Following up on myself because I just realized I may be barking up the
wrong tree; if so I apologize for the bandwidth, but would still love it if
someone could point me in the right direction.
After reading through the mailing list archives, I think that icecast may
not be the solution I'm looking for, because I'm hoping to somehow play the
mp3s on demand from the web browser, not via a separate mp3-playing
program. My goal is to have the user select a song or a playlist from my
existing web interface, and have the brownser "render" the songs (I suppose
that may require a browser plug-in of some sort?). Can this be done?
Sorry to be dense about all this; if it's not obvious already, I know
nothing about putting audio on the Internet.
Thanks,
John
--On Monday, April 01, 2002 2:42 PM -0500 John Ackermann N8UR
----
John Ackermann N8UR jra at febo.com http://www.febo.com
President, TAPR n8ur at tapr.org http://www.tapr.org
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From bryan at audiorealm.com Mon Apr 1 20:25:38 2002
From: bryan at audiorealm.com (Bryan Payne)
Date: Mon, 1 Apr 2002 14:25:38 -0600
Subject: [icecast] Re: Simple streamer help
In-Reply-To: <26898598.1017674458@WUSJA129861-8HP>
Message-ID: <013601c1d9bb$770c6fa0$3ca0623f@digitalwolf>
John,
Have a look at www.radiotoolbox.com - they may have just what your looking
for
Bryan - N5MDR
----- Original Message -----
From: "John Ackermann N8UR" > Following up on myself because I just realized I may be barking up the
> wrong tree; if so I apologize for the bandwidth, but would still love it
if
> someone could point me in the right direction.
>
> After reading through the mailing list archives, I think that icecast may
> not be the solution I'm looking for, because I'm hoping to somehow play
the
> mp3s on demand from the web browser, not via a separate mp3-playing
> program. My goal is to have the user select a song or a playlist from my
> existing web interface, and have the brownser "render" the songs (I
suppose
> that may require a browser plug-in of some sort?). Can this be done?
>
> Sorry to be dense about all this; if it's not obvious already, I know
> nothing about putting audio on the Internet.
>
> Thanks,
>
> John
>
> --On Monday, April 01, 2002 2:42 PM -0500 John Ackermann N8UR
> --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From mmarquez at cernet.com.mx Mon Apr 1 20:53:05 2002
From: mmarquez at cernet.com.mx (Mario Marquez)
Date: Mon, 01 Apr 2002 14:53:05 -0600
Subject: [icecast] Re: Simple streamer help
In-Reply-To: <26898598.1017674458@WUSJA129861-8HP>
Message-ID: <5.0.2.1.2.20020401144951.00a75e80@10.1.1.1>
John
"Static files (http support)
There is support in icecast for streaming files directory from the server
to the client. This is usually handled much more nicely by a real http
server, but if you don't want to go through the hassle of setting up apache
or roxen or whatever, then this might be what you're looking for.
All files must end in .mp3, and they must all be in the file tree rooted at
a directory specified with the static_dir variable. This directory
corresponds to the virtual directory http://server:port/file/. So a file
named stream.mp3 in the static_dir directory can be accessed through a http
request (in a browser or mp3 player or whatever) with the url
http://server:port/file/stream.mp3. "
...from ICECAST Documentation.
Check my server
http://anicast.com.mx:9000/file/
BEst REgards,
Mario
At 03:20 p.m. 01/04/02 -0500, you wrote:
>Following up on myself because I just realized I may be barking up the
>wrong tree; if so I apologize for the bandwidth, but would still love it
>if someone could point me in the right direction.
>
>After reading through the mailing list archives, I think that icecast may
>not be the solution I'm looking for, because I'm hoping to somehow play
>the mp3s on demand from the web browser, not via a separate mp3-playing
>program. My goal is to have the user select a song or a playlist from my
>existing web interface, and have the brownser "render" the songs (I
>suppose that may require a browser plug-in of some sort?). Can this be done?
>
>Sorry to be dense about all this; if it's not obvious already, I know
>nothing about putting audio on the Internet.
>
>Thanks,
>
>John
>
>--On Monday, April 01, 2002 2:42 PM -0500 John Ackermann N8UR
> --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jra at febo.com Mon Apr 1 21:21:51 2002
From: jra at febo.com (John Ackermann N8UR)
Date: Mon, 01 Apr 2002 16:21:51 -0500
Subject: [icecast] Re: Simple streamer help
In-Reply-To: <5.0.2.1.2.20020401144951.00a75e80@10.1.1.1>
Message-ID: <30550849.1017678111@WUSJA129861-8HP>
Hi Mario --
Thanks for the reply. Actually, I have an apache server available. My
problem is how to get from the user selecting a song or series of songs via
the web interface, to having the music magically start playing out of the
user's speakers...
The part I'm having trouble wrapping my head around is getting the browser
to play not a single file that's sitting in some static location (that much
I have working), but instead a continuing sequence of songs (e.g., a
playlist generated by the front-end software). That's why I was thinking
of streaming; my current program could pass either the mp3 bitstream, or
the filesystem location of the song that's playing, to icecast if that
would work. But I don't know if that's the best answer, and in any event I
don't know how to interface to icecast in this way.
(By the way -- this is all running inside my house, so there would at most
be two or three streams going at any given time, and it's all on an
ethernet, so bandwidth isn't an issue; nor is CPU since the music system is
on a dedicated box.)
John
--On Monday, April 01, 2002 2:53 PM -0600 Mario Marquez
----
John Ackermann N8UR jra at febo.com http://www.febo.com
President, TAPR n8ur at tapr.org http://www.tapr.org
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From trelane at dungeonfyre.com Tue Apr 2 01:20:47 2002
From: trelane at dungeonfyre.com (Andrew D Kirch)
Date: Mon, 1 Apr 2002 20:20:47 -0500
Subject: [icecast] ices debug output
Message-ID: <20020401202047.45f97190.trelane@dungeonfyre.com>
I'm running icecast2/ices with the ices-live.xml config (modified to taste)
the server appears to run smoothly
[root at Mandrake82 bin]# ./icecast -c icecast.xml
connection added....
DEBUG: source logging in
but at that point clients cannot connect to the stream recieving a source not found output.
connection added....
DEBUG: client coming in...
DEBUG: source not found for client
after looking through the log and conf for icecast and everything seeming normal I took a look at the logfile for ices which has this error
[2002-04-01 20:04:06] INFO ices-core/main ices started...
[2002-04-01 20:04:06] INFO input-oss/oss_open_module Opened audio device /dev/dsp at 2 channel(s), 22050 Hz
[2002-04-01 20:04:06] INFO input-oss/oss_open_module Started metadata update thread
[2002-04-01 20:04:06] INFO encode/encode_initialise Encoder initialising at 2 channels, 22050 Hz, quality 2.000000
[2002-04-01 20:04:06] INFO stream/ices_instance_stream Connected to server: 127.0.0.1:8000/wopn.ogg
[2002-04-01 20:04:08] DBUG encode/encode_dataout Forcing flush: Too many samples in current page (49152)
repeating the last line exactly every 2 seconds.
DEBUG: client coming in...
DEBUG: source found for client
DEBUG: sending ice-bitrate: 0
DEBUG: sending ice-description: A short description of your stream
DEBUG: sending ice-genre: WOPN Radio Music
DEBUG: sending ice-name: WOPN Radio Network
DEBUG: sending ice-public: 0
SOURCE: client had unrecoverable error 32 with new data (-1/115)
DEBUG: Client dropped...
There is approximately a 5 minute time elapse before the winamp trying to log in gets anything to buffer.
I'm stuck at this point and don't really know where to go from here.
--
Andrew D Kirch
Administrator, Dungeonfyre IRC Network
Staff Dungeonfyre Shellhosting
-------------- next part --------------
A non-text attachment was scrubbed...
Name: icecast.xml
Type: application/octet-stream
Size: 817 bytes
Desc: icecast.xml
URL: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Tue Apr 2 13:16:18 2002
From: jack at xiph.org (Jack Moffitt)
Date: Tue, 2 Apr 2002 06:16:18 -0700
Subject: [icecast] [dizznutt@my.security.nl: icecast 1.3.11 remote shell/root exploit - #temp]
Message-ID: <20020402131618.GL16749@babyjesus.cantcode.com>
Contrary to the report, this only affect 1.3.x version of icecast, not
_all_ versions.
But this is a serious problem and I do hope you all took my advice last
time and aren't running icecast as root.
I'll try to have a patch today.
jack.
----- Forwarded message from dizznutt at my.security.nl -----
Date: Tue, 2 Apr 2002 07:51:55 +0000 (GMT+00:00)
From: dizznutt at my.security.nl
To: bugtraq at securityfocus.com
Cc: team at icecast.org
Subject: icecast 1.3.11 remote shell/root exploit - #temp
X-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME version=2.11
Ola,
I'm feeling rather homicidal today so I'm killing a bug. I hope it has a
nice funeral. It has been a good friend to all of us. May it rest in peace.
There is a remotely exploitable buffer overflow in all versions of the Icecast
mp3 streaming server (www.icecast.org). All means that yes, the current
version (1.3.11) is vulnerable. Apparently alot of people can't be bothered
to set the perms on the icecast log dirs right and just run it as root.
Hence the designation remote shell/root. If not running with uid 0 it will
yield a shell with the uid/gid of the icecast user.
The vendor has been notified via a cc of this mail. Fixing is easy so I
expect they will release patches shortly.
See the attached exploit (icx.c) for further details.
diz -- #temp
eww..so that's what full disclosure feels like...
----- End forwarded message -----
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From carl at personnelware.com Wed Apr 3 18:14:36 2002
From: carl at personnelware.com (Carl Karsten)
Date: Wed, 3 Apr 2002 12:14:36 -0600
Subject: [icecast] security issue
In-Reply-To: <20020402131618.GL16749@babyjesus.cantcode.com>
Message-ID: <063d01c1db3b$69b77a30$0a01a8c0@cnt496>
I know how to get the passwords from a typical install of icecast. anyone have any ideas on what I should do with this info?
Should I just post it here in the public? I think the worst that will happen is someone can highack a server and cut off the
current stream and fed a new stream.
Carl
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Wed Apr 3 18:49:37 2002
From: jack at xiph.org (Jack Moffitt)
Date: Wed, 3 Apr 2002 11:49:37 -0700
Subject: [icecast] security issue
In-Reply-To: <063d01c1db3b$69b77a30$0a01a8c0@cnt496>
Message-ID: <20020403184937.GD2424@babyjesus.cantcode.com>
> I know how to get the passwords from a typical install of icecast. anyone have any ideas on what I should do with this info?
> Should I just post it here in the public? I think the worst that will happen is someone can highack a server and cut off the
> current stream and fed a new stream.
Why don't you send it to me first :)
That way I can begin work on a fix regardless of when you publish the
info.
jack.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From simensen at halogen.org Wed Apr 3 20:30:39 2002
From: simensen at halogen.org (Beau D. Simensen)
Date: Wed, 3 Apr 2002 12:30:39 -0800
Subject: [icecast] Different passwords for each mountpoint
In-Reply-To: <20020403184937.GD2424@babyjesus.cantcode.com>
Message-ID: <015501c1db4e$6b6bbf40$2a04a8c0@vaiolaptop>
Something I'd be interested in setting up is specific passwords for each
moutpoint. Maybe this functionality exists somewhere already and I just
haven't found out how to activate it yet. All I've seen is one encoder
password per icecast server instead of one password per moutpoint.
If I've missed something, please point me in the right direction. If I
haven't, may I ask if this type of functionality will be included in
icecast2?
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From johnwatson at Mysticglow.com Thu Apr 4 00:25:06 2002
From: johnwatson at Mysticglow.com (John Watson)
Date: Wed, 03 Apr 2002 18:25:06 -0600
Subject: [icecast] Icecast2
In-Reply-To: <20020403184937.GD2424@babyjesus.cantcode.com>
Message-ID: <3CAB9D62.6A85205D@Mysticglow.com>
Do we, yet, have an eta (or an update) on when icecast2 will work with the listing website?
Thanks.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From doug at world-mail.org Thu Apr 4 00:26:51 2002
From: doug at world-mail.org (Doug Curtis)
Date: Wed, 3 Apr 2002 19:26:51 -0500
Subject: [icecast] A couple of questions involving Ices and Icecast
Message-ID: <1017880011.3cab9dcb1ea1a@www.world-mail.org>
I tried searching the archives but couldn't find anything on this.
1. I am using Ices and Icecast with Linux. When I connect with Winamp from
another machine on the same network, the red light goes on and off indicating
that it's reading from the buffer. Being that I am only client connected, why
would it read from the buffer? The bandwdith isn't maxed out and the server
isn't doing anything but run Icecast.
2. I wanted to try the Shoutcast temporarily to see if it does it then but
when Ices tries to connect, I get a Bad password error. I know that password
is right in the config file. Any ideas?
Thanks,
Doug
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From carl at personnelware.com Thu Apr 4 00:51:30 2002
From: carl at personnelware.com (Carl Karsten)
Date: Wed, 3 Apr 2002 18:51:30 -0600
Subject: [icecast] how to direct the sreams to mount points
In-Reply-To: <015501c1db4e$6b6bbf40$2a04a8c0@vaiolaptop>
Message-ID: <073001c1db72$dc399340$0a01a8c0@cnt496>
Not sure where the right place to post this is, so I figure here is as good as any...
How do I tell the ShoutCast plugin for Winamp which icecast mount point to stream to?
What I would really like is to have my local mp3 list randomly play 24/7, and when a lecture is going on, stream the voice an have
that be the default stream. I don't really care if the music keeps playing, I just want something there all the time so people can
test their connections ahead of time.
Also, any ideas on how to stream live video? especially 800x600 screen capture. I am broadcasting our developers group meetings,
and it would be tres cool to get the presentations broadcast.
Carl
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From eric.gianquinto at easynet.be Thu Apr 4 10:04:40 2002
From: eric.gianquinto at easynet.be (Eric Gianquinto)
Date: 04 Apr 2002 12:04:40 +0200
Subject: [icecast] liveice daemon ...
Message-ID: <1017914689.2049.0.camel@knob-lap1>
Hello all,
Is there any possibility to execute liveice as a daemon ... ??? or
something like that ...
Thanks
eric
--
Eric Gianquinto
Rue Souveraine, 114 - 1000 Bruxelles - Belgium
Tel: +32 (0)2 6429217 - GSM: +32 (0)495 301648
PGP public key on public key servers
PGP-fingerprint B82A 5A2C 9104 A8FE A08D 2B5F E4E2 318E AE46 7D81
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From marcelo at gulin.com.ar Thu Apr 4 12:32:48 2002
From: marcelo at gulin.com.ar (Marcelo Gulin)
Date: Thu, 4 Apr 2002 09:32:48 -0300
Subject: [icecast] Getting started
Message-ID: <000501c1dbd4$d569e080$0a01a8c0@w2k>
Hi guys!
I'm new here and need some help.
I need to broadcast (live) a FM radio signal to the internet.
Where should I start reading to learn how?
Thanks in advance
-marcelo
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3584 bytes
Desc: smime.p7s
URL:
--
Pierre Amadio
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From doug.curtis at world-mail.org Thu Apr 4 13:21:43 2002
From: doug.curtis at world-mail.org (Doug Curtis)
Date: Thu, 04 Apr 2002 08:21:43 -0500
Subject: [icecast] Getting started
In-Reply-To: <000501c1dbd4$d569e080$0a01a8c0@w2k>
Message-ID: <5.1.0.14.2.20020404080712.00ba2a10@world-mail.org>
First off, you need some sort of streaming server (preferably
icecast). Configuring icecast is pretty easy. Now you need a streamer
that will take the line in from your soundcard (I'm assuming you are using
the line in of your soundcard to get the FM broadcast onto your computer)
and encode it to mp3. I've found that Darkice does a pretty good job at
this. Also, Liveice will complete the task.
I won't go into the details of configuration, but it's fairly simple. That
should get you started.
Hope it helps,
Doug
At 09:32 AM 4/4/2002 -0300, you wrote:
>Hi guys!
>
> I'm new here and need some help.
>
> I need to broadcast (live) a FM radio signal to the internet.
> Where should I start reading to learn how?
>
>Thanks in advance
>-marcelo
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gshang at uq.net.au Thu Apr 4 13:34:28 2002
From: gshang at uq.net.au (Geoff Shang)
Date: Thu, 4 Apr 2002 23:34:28 +1000
Subject: [icecast] how to direct the sreams to mount points
In-Reply-To: <073001c1db72$dc399340$0a01a8c0@cnt496>
Message-ID:
--
Geoff Shang --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From alfredo at nexus.org Thu Apr 4 13:52:36 2002
From: alfredo at nexus.org (Alfredo E. Cotroneo)
Date: Thu, 04 Apr 2002 15:52:36 +0200
Subject: [icecast] Fwd: Icecast temp patch (OR: Patches? We DO need stinkin' patches!!@$!)
Message-ID: <5.1.0.14.2.20020404153228.03d5b3f0@mail2.nexus.org>
Hi There,
re. the recently reported buffer overflow in icecast, is there any
"official" security patch against 1.3.11 ? I am reluctant to take any
un-official patch like this one ;-)
There is nothing on www.icecast.org/releases, maybe it's somewhere else ?
Thanks.
Alfredo
>Mailing-List: contact bugtraq-help at securityfocus.com; run by ezmlm
>List-Id: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gshang at uq.net.au Thu Apr 4 14:01:04 2002
From: gshang at uq.net.au (Geoff Shang)
Date: Fri, 5 Apr 2002 00:01:04 +1000
Subject: [icecast] Applying dynamic compression to live audio
Message-ID:
--
Geoff Shang --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Thu Apr 4 14:08:30 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Thu, 04 Apr 2002 16:08:30 +0200
Subject: [icecast] Applying dynamic compression to live audio
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From alfredo at nexus.org Thu Apr 4 14:09:05 2002
From: alfredo at nexus.org (Alfredo E. Cotroneo)
Date: Thu, 04 Apr 2002 16:09:05 +0200
Subject: [icecast] Applying dynamic compression to live audio
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Thu Apr 4 14:13:45 2002
From: jack at xiph.org (Jack Moffitt)
Date: Thu, 4 Apr 2002 07:13:45 -0700
Subject: [icecast] Applying dynamic compression to live audio
In-Reply-To:
--
Geoff Shang --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gshang at uq.net.au Thu Apr 4 14:45:23 2002
From: gshang at uq.net.au (Geoff Shang)
Date: Fri, 5 Apr 2002 00:45:23 +1000
Subject: [icecast] Applying dynamic compression to live audio
In-Reply-To: <20020404141344.GI2424@babyjesus.cantcode.com>
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From telmnstr at 757.org Thu Apr 4 15:31:46 2002
From: telmnstr at 757.org (Ethan)
Date: Thu, 4 Apr 2002 10:31:46 -0500 (EST)
Subject: [icecast] Applying dynamic compression to live audio
In-Reply-To: <5.1.0.14.2.20020404160256.02f63450@mail2.nexus.org>
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From telmnstr at 757.org Thu Apr 4 15:34:23 2002
From: telmnstr at 757.org (Ethan)
Date: Thu, 4 Apr 2002 10:34:23 -0500 (EST)
Subject: [icecast] Applying dynamic compression to live audio
In-Reply-To: <20020404141344.GI2424@babyjesus.cantcode.com>
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From pozar at lns.com Thu Apr 4 15:37:21 2002
From: pozar at lns.com (Tim Pozar)
Date: Thu, 4 Apr 2002 07:37:21 -0800
Subject: [icecast] Applying dynamic compression to live audio
In-Reply-To: <20020404141344.GI2424@babyjesus.cantcode.com>
Message-ID: <20020404073721.A7818@lns.com>
On Thu, Apr 04, 2002 at 07:13:45AM -0700, Jack Moffitt wrote:
> While dynamic compression makes the transmission 'smaller' on FM radio,
> it makes music harder to compress by psychoacoustic codecs, and therefor
> you might have somewhat of a quality hit, although I haven't tested
> this.
I have tested this to a limited extent.
Jack is correct that the addition of compression and limiting will
cause the codecs to work harder. Any audio processing will generate
distortion in additional spectral energy as second and third harmonics
that the codecs will need to try to figure out how to compress.
You will start to hear more artifacts in the stream the more you
compress, limit and clip.
But this isn't to say you shouldn't do some processing. There are
two reasons to audio process for streams; to prevent digital clipping
and to reduce the dynamic range so the audio can be hear in noisy
environments. Sometimes folks will process the audio as they like
the "sound".
Ideally, you would want to use a soft knee limiter to prevent
clipping and perhaps slow automatic gain control (AGC) to help
reduce the dynamic range. The Behringer (http://www.behringer.com)
Composer Pro MDX2200 is about the cheapest bang for the buck (~$150)
processor out there. I found that it takes a lot of tweaking to
make it sound okay. You can't use the use it too much as it sounds
pretty bad if you push it.
If folks have a couple extra bucks, I would suggest looking at the
Aphex (http://www.aphex.com) gear as it sounds much better but you
can expect to pay about $250 for a used "Compellor" (AGC) and
$400-$500 for a "Dominator" (limiter) on Ebay.
Tim
--
Snail: Tim Pozar / LNS / 1978 45th Ave / San Francisco CA 94116 / USA
POTS: +1 415 665 3790 Radio: KC6GNJ / KAE6247
"It's a damn poor mind that can only think of one way to spell a word."
- Andrew Jackson
"What is wanted is not the will to believe, but the will to find out,
which is the exact opposite." - Bertrand Russell, "Skeptical_Essays"
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gshang at uq.net.au Thu Apr 4 15:51:18 2002
From: gshang at uq.net.au (Geoff Shang)
Date: Fri, 5 Apr 2002 01:51:18 +1000
Subject: [icecast] Applying dynamic compression to live audio
In-Reply-To: <3CAC5E5E.9010609@tyrell.hu>
Message-ID:
--
Geoff Shang --
Geoff Shang --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From marcelo at gulin.com.ar Thu Apr 4 16:00:46 2002
From: marcelo at gulin.com.ar (Marcelo Gulin)
Date: Thu, 4 Apr 2002 13:00:46 -0300
Subject: [icecast] Getting started
In-Reply-To: <5.1.0.14.2.20020404080712.00ba2a10@world-mail.org>
Message-ID: <002001c1dbf1$e27fc470$0a01a8c0@w2k>
Thanks Doug and Pierre for your advises.
I'll try right now.
-marcelo
-----Original Message-----
From: owner-icecast at xiph.org [mailto:owner-icecast at xiph.org] On Behalf
Of Doug Curtis
Sent: Jueves, 04 de Abril de 2002 10:22 a.m.
To: icecast at xiph.org
Subject: Re: [icecast] Getting started
First off, you need some sort of streaming server (preferably
icecast). Configuring icecast is pretty easy. Now you need a streamer
that will take the line in from your soundcard (I'm assuming you are
using
the line in of your soundcard to get the FM broadcast onto your
computer)
and encode it to mp3. I've found that Darkice does a pretty good job at
this. Also, Liveice will complete the task.
I won't go into the details of configuration, but it's fairly simple.
That
should get you started.
Hope it helps,
Doug
At 09:32 AM 4/4/2002 -0300, you wrote:
>Hi guys!
>
> I'm new here and need some help.
>
> I need to broadcast (live) a FM radio signal to the internet.
> Where should I start reading to learn how?
>
>Thanks in advance
>-marcelo
--- >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 at xiph.org' containing only the word 'unsubscribe' in the
body. No subject is needed. Unsubscribe messages sent to the list will
be ignored/filtered.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3584 bytes
Desc: smime.p7s
URL: >>> eric.gianquinto at easynet.be 4/4/02 4:04:40 AM >>>
Hello all,
Is there any possibility to execute liveice as a daemon ... ??? or
something like that ...
Thanks
eric
--
Eric Gianquinto
Rue Souveraine, 114 - 1000 Bruxelles - Belgium
Tel: +32 (0)2 6429217 - GSM: +32 (0)495 301648
PGP public key on public key servers
PGP-fingerprint B82A 5A2C 9104 A8FE A08D 2B5F E4E2 318E AE46 7D81
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From chr1701 at yahoo.com Thu Apr 4 16:14:52 2002
From: chr1701 at yahoo.com (Christoph Rupp)
Date: Thu, 4 Apr 2002 08:14:52 -0800 (PST)
Subject: [icecast] another patch (ping command)
Message-ID: <20020404161452.76713.qmail@web10001.mail.yahoo.com>
Hi folks,
this is my first patch to an open source project ever,
so please be kind ;)
when i enter "ping" without arguments icecast crashes
(Version 1.3.11), the patch was generated with "diff
-u ...", i hope this is ok.
cu
Chris
--- commands.c~ Fri Jun 22 20:59:45 2001
+++ commands.c Thu Apr 4 17:07:23 2002
@@ -2883,8 +2883,10 @@
int s, port = info.port[0];
time_t before = 0;
- if (!arg || !arg[0])
+ if (!arg || !arg[0]) {
admin_write_line (req,
ADMIN_SHOW_PING_INVALID_SYNTAX, PING_SYNTAX);
+ return 1;
+ }
host[0] = '\0';
=====
http://www.crupp.de
__________________________________________________
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From rem at entropik.com Thu Apr 4 16:29:39 2002
From: rem at entropik.com (rem cmiral)
Date: Thu, 4 Apr 2002 08:29:39 -0800
Subject: [icecast] Applying dynamic compression to live audio
In-Reply-To: rem
i would like to extend many thanx to the people responsible for icecast et
all. :)
Subject: Re: [icecast] Applying dynamic compression to live audio
> On Thu, 4 Apr 2002, Akos Maroy wrote:
>
> > can you tell me more about these LADSPA plugins?
>
> LADSPA stands for Linux Audio Developer's Simple Plugin API (see
> http://www.ladspa.org/). Basically, it was pointed out on the linux audio
> dev (LAD) mailing list that numerous programs were using plugin
> architectures and all were different. So they fleshed out a plugin API
> and the rest, as they say, is history.
>
> Right now, only things like compressors, expanders and limiters would
> probably be useful to insert into a stream, but if someone wrote an
> equaliser or a gate or something, that could well be useful too.
>
> Geoff.
>
>
> --
> Geoff Shang --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From oddsock at oddsock.org Fri Apr 5 14:39:24 2002
From: oddsock at oddsock.org (oddsock)
Date: Fri, 05 Apr 2002 08:39:24 -0600
Subject: [icecast] new icecast2 win32 binary...
Message-ID: <5.1.0.14.0.20020405083420.03555548@oddsock.org>
for anyone interested, I have a new win32 binary for icecast2 which fixes
(finally) the last known problem (server crashing when start/stopping the
server)....keep in mind that icecast2 is still not officially released yet,
and I hope that soon this version will be put in cvs, but until that time,
you'll have to get it here -> http://www.oddsock.org/icecast2 beta5 is
the latest version.
oddsock
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From eric.gianquinto at easynet.be Fri Apr 5 19:01:45 2002
From: eric.gianquinto at easynet.be (Eric Gianquinto)
Date: 05 Apr 2002 21:01:45 +0200
Subject: [icecast] liveice daemon ...
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From david at gof.se Fri Apr 5 19:29:47 2002
From: david at gof.se (David)
Date: Fri, 05 Apr 2002 21:29:47 +0200
Subject: [icecast] LiveIce Plugin for XMMS and OS X
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From durrell at innocence.com Sat Apr 6 06:44:26 2002
From: durrell at innocence.com (Bryant Durrell)
Date: Fri, 5 Apr 2002 22:44:26 -0800
Subject: [icecast] ices 0.2.2 and Mac OS X 10.1?
Message-ID: <20020405224425.A5675@innocence.com>
I've having trouble getting ices to compile under MacOS X. Mac OS has a
somewhat novel threads implementation (I'm being polite, here) and it
doesn't get along well with the threads in ices -- has anyone gotten it
to compile under MacOS X?
Initial errors:
Making all in thread
cc -DHAVE_CONFIG_H -I. -I. -I.. -I../avl -I../log -g -pipe -pipe -fno-common -no-cpp-precomp -flat_namespace -DHAS_TELLDIR_PROTOTYPE -fno-strict-aliasing -I/System/Library/Perl/darwin/CORE -I/usr/local/include/libxml2/libxml -I/usr/local/include/libxml2 -g -O2 -Wall -c thread.c
In file included from thread.c:40:
thread.h:48: conflicting types for `thread_t'
/usr/include/mach/mach_types.h:98: previous declaration of `thread_t'
thread.c: In function `_block_signals':
thread.c:184: warning: implicit declaration of function `pthread_sigmask'
thread.c: At top level:
thread.c:70: warning: `_next_mutex_id' defined but not used
make[2]: *** [thread.o] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all-recursive-am] Error 2
I dug in and renamed thread_t in the ices code, and added:
#define pthread_sigmask(A,B,C) sigprocmask((A),(B),(C))
to thread/thread.h on the advice of some notes on one of the Darwin lists.
It'll compile now, but dumps core right after startup:
[justice:/usr/local/icecast] root# bin/ices -c etc/ices.conf
DEBUG: Sending following information to libshout:
DEBUG: Stream: 0
DEBUG: Host: localhost Port: 8000
DEBUG: Password: notreallymypasswordsorry Icy Compat: 0
DEBUG: Name: Cool ices default name from XML URL: Cool ices URL from XML
DEBUG: Genre: Cool ices genre from XML Desc: Cool ices description from XML
DEBUG: Bitrate: 128 Public: 1
DEBUG: Mount: default Dumpfile: (null)
Logfile opened
DEBUG: Initializing playlist handler...
DEBUG: Initializing builting playlist handler...
Mounted on http://127.0.0.1:8000/default
DEBUG: Builtin playlist handler serving: /MP3s/Albums/Big Star/Live At Missouri University 4:25:93/01 In The Street.mp3
DEBUG: ID3v2 tag size is 2183 bytes
DEBUG: Skipping to MP3 data
DEBUG: Layer: III Version: MPEG-1 Frequency: 44100
DEBUG: Bitrate: 128 kbit/s Padding: 1 Mode: j-stereo
DEBUG: Ext: 0 Mode_Ext: 0 Copyright: 0 Original: 0
DEBUG: Error Protection: 0 Emphasis: 0 Stereo: 2
Playing /MP3s/Albums/Big Star/Live At Missouri University 4:25:93/01 In The Street.mp3
DEBUG: Initially delaying metadata update...
Bus error
(The icecast logs show icecast accepting the connection, and then the
connection times out, so it's clearly an ices issue.)
--
Bryant Durrell [] http://www.innocence.com/~durrell [] 9/11/2001
[----------------------------------------------------------------------------]
"All I ask of my body is that it carry around my head."
-- Thomas Alva Edison
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From dizznutt at my.security.nl Sat Apr 6 10:24:38 2002
From: dizznutt at my.security.nl (dizznutt at my.security.nl)
Date: Sat, 6 Apr 2002 10:24:38 +0000 (GMT+00:00)
Subject: [icecast] Full analysis of the remotely exploitable icecast 1.3.x bugs
Message-ID: <200204061041.CAA20026@pl1.hushmail.com>
Hello Icecast folks,
Attached is an analysis I slapped together detailing the exact specifics
of the bug that is exploited with the icecast exploit I disclosed earlier
this week. Furthermore it details another remotely exploitable bug. I sent
this to team at icecast.org and to Jack Moffit, but have not received a response
as of yet. So if people, like I noticed in the icecast at xiph.org list, are
weary off applying the temporary greater than 8000 bytes string check patch
to client.c (which makes sure you have a 192 byte buffer left for your server
hostname and stream port..and would thus catch pretty much all possible
attacks using said bugs) They can have a look at this analysis and apply
temporary fixes themselfs. Untill the Icecast dev team sees it fit to release
official patches.
Oh and in response to the "I know how to get passwords on a default install".
Isn't that just doable by going to http://example.icecast.server:8000/admin
right after a default install?
If this list does not allow attachments you can also find said analysis
at:
http://online.securityfocus.com/archive/1/265719
Oh and if people want to test their local systems against this bug..you
can aquire the exploit at:
(it should be noted that this version of the exploit is just meant for linux
x86 targets. This does not mean this bug is not exploitable on other platforms)
http://www.packetstormsecurity.nl/filedesc/icx.c.html
ltr,
diz
-------------- next part --------------
A non-text attachment was scrubbed...
Name: icecast.txt
Type: application/octet-stream
Size: 4808 bytes
Desc: icecast.txt
URL: To be opt out please email optout at systems-mail.org
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gluis at alsuites.com Mon Apr 8 03:34:10 2002
From: gluis at alsuites.com (Luis M. Gallardo D.)
Date: Sun, 07 Apr 2002 23:34:10 -0400
Subject: [icecast] [Q] Web Admin Setting
Message-ID: <3CB10FB2.7B0B71DF@alsuites.com>
Hi everybody. I set up a streaming server with Icecast 1.3.11, and
everything has been ok until now, except for one thing: when I try to
set a variable from the Icecast Web Interface (/admin=set page) I get
the next message:
"You must supply a variable to be changed"
The link that Icecast generates is something like this:
http://www.theserver:8000/admin?mode=change&argument=
Obviously at the end of the link left the variable's name.
I can only change the variable's value (encoder_password in this case)
if I write directly the next line in the browser:
http://www.theserver:8000/admin?mode=change&argument=encoder_password
Does someone know how to fix this behaviour?
I looked for information on the FAQ (icecast home page) and there is
nothing about technical stuff. I searched through the net but I got
nothing. I looked for on the mail listing archives and it seems like
this problem hasn't been reported.
I hope someone can help me. Thanks in advanced.
Luis Gallardo.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From kgb at gangverk.is Mon Apr 8 11:26:13 2002
From: kgb at gangverk.is (Kristj醤 Gu餹i Bjarnason)
Date: Mon, 8 Apr 2002 11:26:13 -0000
Subject: [icecast] Darkice memory leak
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Mon Apr 8 14:34:12 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Mon, 08 Apr 2002 16:34:12 +0200
Subject: [icecast] Darkice memory leak
In-Reply-To: Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From kgb at gangverk.is Mon Apr 8 15:20:11 2002
From: kgb at gangverk.is (Kristjan Gu?ni Bjarnason)
Date: Mon, 8 Apr 2002 15:20:11 -0000
Subject: [icecast] Darkice memory leak
In-Reply-To: <3CB1AA64.600@tyrell.hu>
Message-ID: Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From kgb at gangverk.is Mon Apr 8 17:20:48 2002
From: kgb at gangverk.is (Kristjan Gu?ni Bjarnason)
Date: Mon, 8 Apr 2002 17:20:48 -0000
Subject: [icecast] Darkice memory leak
In-Reply-To: <3CB1B922.7000603@tyrell.hu>
Message-ID: -----Original Message-----
From: owner-icecast at xiph.org [mailto:owner-icecast at xiph.org]On Behalf Of
Akos Maroy
Sent: 8. april 2002 15:37
To: icecast at xiph.org
Subject: Re: [icecast] Darkice memory leak
Kristjan,
>>From Top I can see the leak is about 120 kbytes every update (5 sec).
Most
> of the time its 120 kbytes but every 3-4 time its 120 or 116 kbytes.
What do you mean by 'update'?
> The config file is attached. As you can see I am starting two icecast
> streams, one 128 kbits and one 64. It also leaks with just one stream.
Very very strange. What system are you using? How do you measure the
memory leak?
Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Mon Apr 8 17:53:05 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Mon, 08 Apr 2002 19:53:05 +0200
Subject: [icecast] Darkice memory leak
In-Reply-To: Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From kgb at gangverk.is Mon Apr 8 18:02:32 2002
From: kgb at gangverk.is (Kristjan Gu?ni Bjarnason)
Date: Mon, 8 Apr 2002 18:02:32 -0000
Subject: [icecast] Darkice memory leak
In-Reply-To: <3CB1D901.4010708@tyrell.hu>
Message-ID: -----Original Message-----
From: owner-icecast at xiph.org [mailto:owner-icecast at xiph.org]On Behalf Of
Akos Maroy
Sent: 8. april 2002 17:53
To: icecast at xiph.org
Subject: Re: [icecast] Darkice memory leak
Kristjan Gu?ni Bjarnason wrote:
> ups, sorry for fuzzy description. I use "top" to watch the running
> processes. It updates every 5 seconds.
I see, thanks.
> I am running RedHat 7.2, download from one of Redhats mirros. Haven't
> installed any updates of Redhat 7.2. The box is a fresh PC with Amd
Athlon
> 1700XP, 128MB, two SoundBlaster 16 PCI using OSS drivers.
I have about the same box at home, and have no such problems.
> Any info missing?
How did you compile lame? Or are you using a binary?
Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From brendan at icecast.org Mon Apr 8 19:24:06 2002
From: brendan at icecast.org (Brendan Cully)
Date: Mon, 8 Apr 2002 15:24:06 -0400
Subject: [icecast] ices 0.2.2 and Mac OS X 10.1?
In-Reply-To: <20020405224425.A5675@innocence.com>
Message-ID: <20020408192406.GC1920@xanadu.kublai.com>
On Friday, 05 April 2002 at 22:44, Bryant Durrell wrote:
> I've having trouble getting ices to compile under MacOS X. Mac OS has a
> somewhat novel threads implementation (I'm being polite, here) and it
> doesn't get along well with the threads in ices -- has anyone gotten it
> to compile under MacOS X?
I haven't done it, but you might give the latest CVS a try - someone
recently contributed a patch for the log module which might cause this
crash.
IIRC there's no good reason for ices to use threads for metadata anyway.
If I get time I'll likely replace this with a simple fork.
BTW I think ices is technically in the wrong declaring thread_t. I
believe all types ending in _t are reserved...
-b
> Initial errors:
>
> Making all in thread
> cc -DHAVE_CONFIG_H -I. -I. -I.. -I../avl -I../log -g -pipe -pipe -fno-common -no-cpp-precomp -flat_namespace -DHAS_TELLDIR_PROTOTYPE -fno-strict-aliasing -I/System/Library/Perl/darwin/CORE -I/usr/local/include/libxml2/libxml -I/usr/local/include/libxml2 -g -O2 -Wall -c thread.c
> In file included from thread.c:40:
> thread.h:48: conflicting types for `thread_t'
> /usr/include/mach/mach_types.h:98: previous declaration of `thread_t'
> thread.c: In function `_block_signals':
> thread.c:184: warning: implicit declaration of function `pthread_sigmask'
> thread.c: At top level:
> thread.c:70: warning: `_next_mutex_id' defined but not used
> make[2]: *** [thread.o] Error 1
> make[1]: *** [all-recursive] Error 1
> make: *** [all-recursive-am] Error 2
>
> I dug in and renamed thread_t in the ices code, and added:
>
> #define pthread_sigmask(A,B,C) sigprocmask((A),(B),(C))
>
> to thread/thread.h on the advice of some notes on one of the Darwin lists.
> It'll compile now, but dumps core right after startup:
>
> [justice:/usr/local/icecast] root# bin/ices -c etc/ices.conf
> DEBUG: Sending following information to libshout:
> DEBUG: Stream: 0
> DEBUG: Host: localhost Port: 8000
> DEBUG: Password: notreallymypasswordsorry Icy Compat: 0
> DEBUG: Name: Cool ices default name from XML URL: Cool ices URL from XML
> DEBUG: Genre: Cool ices genre from XML Desc: Cool ices description from XML
> DEBUG: Bitrate: 128 Public: 1
> DEBUG: Mount: default Dumpfile: (null)
> Logfile opened
> DEBUG: Initializing playlist handler...
> DEBUG: Initializing builting playlist handler...
> Mounted on http://127.0.0.1:8000/default
> DEBUG: Builtin playlist handler serving: /MP3s/Albums/Big Star/Live At Missouri University 4:25:93/01 In The Street.mp3
> DEBUG: ID3v2 tag size is 2183 bytes
> DEBUG: Skipping to MP3 data
> DEBUG: Layer: III Version: MPEG-1 Frequency: 44100
> DEBUG: Bitrate: 128 kbit/s Padding: 1 Mode: j-stereo
> DEBUG: Ext: 0 Mode_Ext: 0 Copyright: 0 Original: 0
> DEBUG: Error Protection: 0 Emphasis: 0 Stereo: 2
> Playing /MP3s/Albums/Big Star/Live At Missouri University 4:25:93/01 In The Street.mp3
> DEBUG: Initially delaying metadata update...
> Bus error
>
> (The icecast logs show icecast accepting the connection, and then the
> connection times out, so it's clearly an ices issue.)
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From npavel at ituner.com Mon Apr 8 21:18:39 2002
From: npavel at ituner.com (Nicu Pavel)
Date: Tue, 09 Apr 2002 00:18:39 +0300
Subject: [icecast] Darkice memory leak
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From carl at personnelware.com Tue Apr 9 01:00:20 2002
From: carl at personnelware.com (Carl Karsten)
Date: Mon, 8 Apr 2002 20:00:20 -0500
Subject: [icecast] Full analysis of the remotely exploitable icecast 1.3.x bugs
In-Reply-To: <200204061041.CAA20026@pl1.hushmail.com>
Message-ID: <00a401c1df61$eda379a0$0a01a8c0@cnt496>
> Oh and in response to the "I know how to get passwords on a default install".
> Isn't that just doable by going to http://example.icecast.server:8000/admin
> right after a default install?
Correct. I tried it on one other server, got the list of sets, reported it, and have yet to find a 3rd server. after about the 5th
attempt, I gave up trying.
Carl
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Tue Apr 9 01:08:44 2002
From: jack at xiph.org (Jack Moffitt)
Date: Mon, 8 Apr 2002 19:08:44 -0600
Subject: [icecast] Full analysis of the remotely exploitable icecast 1.3.x bugs
In-Reply-To: <00a401c1df61$eda379a0$0a01a8c0@cnt496>
Message-ID: <20020409010844.GC505@babyjesus.cantcode.com>
> > Isn't that just doable by going to http://example.icecast.server:8000/admin
> > right after a default install?
>
> Correct. I tried it on one other server, got the list of sets, reported it, and have yet to find a 3rd server. after about the 5th
> attempt, I gave up trying.
I can't reproduce this, but have gotten several reports. So I'm
confused.
jack.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From bluhmcc at auburn.edu Tue Apr 9 04:28:42 2002
From: bluhmcc at auburn.edu (Clayton Bluhm)
Date: 09 Apr 2002 00:28:42 -0400
Subject: [icecast] Badpassword Icecast
Message-ID: <1018326522.870.70.camel@bossk>
Hey guys. Let me give you a run down on specs before I go into my
problem:
Computer 1 (zuckuss)
Linux 2.2.19
icecast 1.3.11 - compiled from source
lineused to start: /usr/local/icecast/bin/icecast
in icecast.conf ... changed:
location
rp_email
server_url
encoder_password mypassword
admin_password mypassword
oper_password mypassword
port 8010
server_name zuckuss
the only thing it whines about is cant figure out who zuckuss
is. (Its a local computer 192.168.10.1)
Computer 2 (bossk)
Linux 2.4.17
shout 0.80 compiled from source
line used: /usr/local/icecast/bin/shout zuckuss -P mypassword -e
8010
With my playlist all setup. OK now when I try to connect to my running
icecast server I get:
Kicking source 1 [bossk] [Bad Password] [encoder], connected for
0 seconds, 0 bytes transfered. -1 sources connected
Now before you go off saying run set and see what it gives me: set
encoder_password: mypassword
client_password: prettyplease
admin_password: mypassword
and shout is sending the correct password as well... opening a packet
sniffer I get:
SOURCE mypassword /default
howing the password go out. This is frustrating me. What am I doing
wrong here? Sorry this is so long. Thanks for your help.
--
Clayton Bluhm bluhmcc at auburn.edu
Computer Engineering Student http://www.auburn.edu/~bluhmcc/
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Tue Apr 9 06:53:53 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Tue, 09 Apr 2002 08:53:53 +0200
Subject: [icecast] Darkice memory leak
In-Reply-To: <3CB2092F.3020207@ituner.com>
Message-ID: <3CB29001.806@tyrell.hu>
Unfortunately I can't reproduce your memory leak reports. For example,
here is the line about my production darkice instance from top:
PID USER PRI NI SIZE RSS SHARE STAT %CPU %MEM TIME COMMAND
27516 root 20 0 3564 3564 1340 S 95.6 1.3 47:06 darkice
this as after approx 50 minutes from start, but the memory load doesn't
change for the whole 4 hours it runs.
What's even more strange, is that darkice does not allocate memory
itself after initialization. I can only guess that the only place memory
can leak is in the libraries darkice uses.
Kristjan or Nicu, can you send me the exact libraries that you'r using?
Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From sqog_MrTart at msn.com Tue Apr 9 09:33:16 2002
From: sqog_MrTart at msn.com (vbdDr.Winchester)
Date: Tue, 9 Apr 2002 04:33:16 -0500
Subject: [icecast] Earn your degree from home. iwuo
Message-ID: <20020409093307.7FDC918D00B@motherfish.xiph.org>
U N I V E R S I T Y D I P L O M A S
Obtain a prosperous future, money earning power,
and the admiration of all.
Diplomas from prestigious non-accredited
universities based on your present knowledge
and life experience.
No required tests, classes, books, or interviews.
Bachelors, masters, MBA, and doctorate (PhD)
diplomas available in the field of your choice.
No one is turned down.
Confidentiality assured.
CALL NOW to receive your diploma
within days!!!
1 - 312 - 803 - 1921
Call 24 hours a day, 7 days a week, including
Sundays and holidays.
cdnwpbrkxoylqotafinuhulhprhlsudoeve
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From kgb at gangverk.is Tue Apr 9 10:11:40 2002
From: kgb at gangverk.is (Kristjan Gu?ni Bjarnason)
Date: Tue, 9 Apr 2002 10:11:40 -0000
Subject: [icecast] Darkice memory leak
In-Reply-To: <3CB2092F.3020207@ituner.com>
Message-ID: -----Original Message-----
From: owner-icecast at xiph.org [mailto:owner-icecast at xiph.org]On Behalf Of
Nicu Pavel
Sent: 8. april 2002 21:19
To: icecast at xiph.org
Subject: Re: [icecast] Darkice memory leak
Kristjan Gu?ni Bjarnason wrote:
> Tried both the binary and compiling the src. Both leaking.
>
> It the setting suggested in "INSTALL.lame" didn't work and so I suspected
> the compiliation settings so I tried various settings. The compiler
version
> is the one coming with RedHat 7.2 gcc3-3.0.1-3.
>
> Kristjan
I don't think it's a memory leak ... of course the memory decreasing it's
just buffering ... (change kernel params in /proc
if you want other behaviour).
I didn't see to start swapping and memory comes back when other programm
needs it.
Just let some vmstat 1 running and see if will eat up all your memory.
Try running without swap.
Nicu.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From kgb at gangverk.is Tue Apr 9 12:44:39 2002
From: kgb at gangverk.is (Kristjan Gu?ni Bjarnason)
Date: Tue, 9 Apr 2002 12:44:39 -0000
Subject: [icecast] Darkice memory leak
In-Reply-To: <3CB29001.806@tyrell.hu>
Message-ID: -----Original Message-----
From: owner-icecast at xiph.org [mailto:owner-icecast at xiph.org]On Behalf Of
Akos Maroy
Sent: 9. april 2002 06:54
To: icecast at xiph.org
Subject: Re: [icecast] Darkice memory leak
Unfortunately I can't reproduce your memory leak reports. For example,
here is the line about my production darkice instance from top:
PID USER PRI NI SIZE RSS SHARE STAT %CPU %MEM TIME COMMAND
27516 root 20 0 3564 3564 1340 S 95.6 1.3 47:06 darkice
this as after approx 50 minutes from start, but the memory load doesn't
change for the whole 4 hours it runs.
What's even more strange, is that darkice does not allocate memory
itself after initialization. I can only guess that the only place memory
can leak is in the libraries darkice uses.
Kristjan or Nicu, can you send me the exact libraries that you'r using?
Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Tue Apr 9 12:56:18 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Tue, 09 Apr 2002 14:56:18 +0200
Subject: [icecast] Darkice memory leak
In-Reply-To: Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From msmith at labyrinth.net.au Tue Apr 9 13:22:46 2002
From: msmith at labyrinth.net.au (Michael Smith)
Date: Tue, 09 Apr 2002 23:22:46 +1000
Subject: [icecast] Darkice memory leak
In-Reply-To: <3CB2E4F2.9030605@tyrell.hu>
Message-ID: <3.0.5.32.20020409232246.41208570@mail.labyrinth.net.au>
>Not, not healthy :)
>
>This was a last minute change before I released 0.9. Appearantly you
>pinpointed the problem. I'll issue a 0.9.1 release shortly...
>
>Thanks for looking into the problem and pinpointing it.
It's worth noting (this presumably won't cause any real problems, but in
the interests of correctness) that in network protocols, 1 kbps == 1000
bits per second, not 1024.
Michael
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From kgb at gangverk.is Tue Apr 9 13:39:07 2002
From: kgb at gangverk.is (Kristjan Gu?ni Bjarnason)
Date: Tue, 9 Apr 2002 13:39:07 -0000
Subject: [icecast] Darkice memory leak
In-Reply-To: <3CB2E4F2.9030605@tyrell.hu>
Message-ID: -----Original Message-----
From: owner-icecast at xiph.org [mailto:owner-icecast at xiph.org]On Behalf Of
Akos Maroy
Sent: 9. april 2002 12:56
To: icecast at xiph.org
Subject: Re: [icecast] Darkice memory leak
Kristjan Gu?ni Bjarnason wrote:
> I was looking more closely on the source for Darkice. I found the code
for
> calulating the buffersize somewhat strange. Your is snapshot taken from
the
> init function in CastSink.cpp :
>
> int bufferSize = bitRate ? (bitRate * 1024 / 8) * bufferDuration
> : (128 * 1024 / 8) * bufferDuration;
> bufferedSink = socket ? new BufferedSink( socket,
> (bufferSize * 1024 / 8) *
> bufferDuration)
> : 0;
>
> In my case the bufferDuration is 10 and bitrate 128. Why is the do we
> multiply by 'bufferSize*1024/8*bufferDuration twice?
> The constructor for BufferedSink allocates the buffer with the 2nd param
as
> the buffersize. In my case the 'chunkSize' is 1 which gives bufferSize =
> 209.715.200 bytes. I am wrong? Is this healty?
Not, not healthy :)
This was a last minute change before I released 0.9. Appearantly you
pinpointed the problem. I'll issue a 0.9.1 release shortly...
Thanks for looking into the problem and pinpointing it.
Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Tue Apr 9 14:07:12 2002
From: jack at xiph.org (Jack Moffitt)
Date: Tue, 9 Apr 2002 08:07:12 -0600
Subject: [icecast] Badpassword Icecast
In-Reply-To: <1018326522.870.70.camel@bossk>
Message-ID: <20020409140712.GI505@babyjesus.cantcode.com>
> Now before you go off saying run set and see what it gives me: set
>
> encoder_password: mypassword
> client_password: prettyplease
> admin_password: mypassword
Ok. Make sure there aren't extra spaces in the config file. It's
fairly sensitive to that. Spaces are weird characters probably choke it
too in the password. Try something stupid like 'asdf' and see if that
helps.
As for zuckus not resolving, that's a dns issue. Does 'host zuckus'
bring up anything?
jack.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From un at dom.de Tue Apr 9 14:29:01 2002
From: un at dom.de (un at dom.de)
Date: Tue, 9 Apr 2002 16:29:01 +0200
Subject: [icecast] [dizznutt@my.security.nl: [Secure] Full analysis of multiple remotely exploitable bugs in Icecast 1.3.11]
Message-ID: <20020409162901.A2064@aporee.org>
hi,
don't know whether this is already covered in the list,
sorry if it's old news...
is there any 1.3.11 bugfix release out there? can't find things
on icecast.org
attached the email from bugtraq.
best, uno
attached mail follows: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From marcelo at gulin.com.ar Tue Apr 9 21:44:39 2002
From: marcelo at gulin.com.ar (Marcelo Gulin)
Date: Tue, 9 Apr 2002 18:44:39 -0300
Subject: [icecast] "No Encoder"?
Message-ID: <003001c1e00f$c1062060$0a01a8c0@w2k>
Hi guys!
Thanks to your help I've my IceCast/LiveIce server up & running but
I?m still having problems:
My IceCast server is on the internal LAN and it's NAT'ed behind an
OpenBSD IPF firewall. Here's my network setup:
Internet ---- [OpenBSD firewall] ---- hub ---- [IceCast server]
| |
+ +
[port 8000 redirected] [NAT'ed 192.168.100.x
box]
NAT is working fine because I can connect to port 8000 from internet.
However, when I telnet to IceCast port and send "GET /stream HTTP/1.O"
command, I can't get the stream from winamp nor IE/Netscape.
When I connect from an internal machine all works fine but when I try
to connect from internet I've get an "404 Stream Not Found" Error. (I
known that the stream exists).
Looking at icecast.log I can see:
[09/Apr/2002:14:00:36] [86:Connection Handler] Kicking unknown 82
[199.6.98.xxx] [No encoder], connected for 2 seconds.
So, What's the "No Encoder" mean?
Or, Where the F* problem is?
Thanks in advance!
Marcelo Gulin
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3584 bytes
Desc: smime.p7s
URL: Kurt J. Dreistadt
----- Original Message -----
From: Marcelo Gulin Hi guys!
Thanks to your help I've my IceCast/LiveIce server up & running but
I?m still having problems:
My IceCast server is on the internal LAN and it's NAT'ed behind an
OpenBSD IPF firewall. Here's my network setup:
Internet ---- [OpenBSD firewall] ---- hub ---- [IceCast server]
| |
+ +
[port 8000 redirected] [NAT'ed 192.168.100.x
box]
NAT is working fine because I can connect to port 8000 from internet.
However, when I telnet to IceCast port and send "GET /stream HTTP/1.O"
command, I can't get the stream from winamp nor IE/Netscape.
When I connect from an internal machine all works fine but when I try
to connect from internet I've get an "404 Stream Not Found" Error. (I
known that the stream exists).
Looking at icecast.log I can see:
[09/Apr/2002:14:00:36] [86:Connection Handler] Kicking unknown 82
[199.6.98.xxx] [No encoder], connected for 2 seconds.
So, What's the "No Encoder" mean?
Or, Where the F* problem is?
Thanks in advance!
Marcelo Gulin
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From thomas at urgent.rug.ac.be Wed Apr 10 09:44:48 2002
From: thomas at urgent.rug.ac.be (Thomas Vander Stichele)
Date: Wed, 10 Apr 2002 11:44:48 +0200 (CEST)
Subject: [icecast] Applying dynamic compression to live audio
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gshang at uq.net.au Wed Apr 10 13:09:31 2002
From: gshang at uq.net.au (Geoff Shang)
Date: Wed, 10 Apr 2002 23:09:31 +1000
Subject: [icecast] Applying dynamic compression to live audio
In-Reply-To:
--
Geoff Shang --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From marcelo at gulin.com.ar Wed Apr 10 13:21:50 2002
From: marcelo at gulin.com.ar (Marcelo Gulin)
Date: Wed, 10 Apr 2002 10:21:50 -0300
Subject: [icecast] "No Encoder"?
In-Reply-To: <004101c1e074$318c7000$859ffea9@r6q9e7>
Message-ID: <000401c1e092$ad7f9070$0a01a8c0@w2k>
Hi!
Sorry! I forget to mention that port 8001 it's open at the firewall
too. So winamp should work fine with this configuration.
Thanks anyway Kurt!
Any other ideas?
Marcelo Gulin
-----Original Message-----
From: owner-icecast at xiph.org [mailto:owner-icecast at xiph.org] On Behalf
Of Kurt J. Dreistadt
Sent: Mi?rcoles, 10 de Abril de 2002 06:43 a.m.
To: icecast at xiph.org
Subject: Re: [icecast] "No Encoder"?
Hi,
the answer can you find in the manual.
Set the port of your WinAMP client to 7999.
There is the manual part:
2. Configuration file (icecast.conf)
-port
This is the port the icecast server uses for all connections. Admins,
clients, and sources, they all connect to this port. The old behavior,
having the clients on 8000 and the encoder on 8001, is too ugly and
creates some problems with firewalls and so. The new behavior might
confuse streamers such as winamp. WinAMP is stupid enough to connect to
the specified port + 1. So if you set the port (in WinAMP) to 8000, it
will connect to 8001. Setting it to 7999 will work though. You can now
use multiple ports, just add another port line. port 8000 port 8001 The
above will make icecast listen on 8000 and 8001.
Kurt J. Dreistadt
----- Original Message -----
From: Marcelo Gulin Hi guys!
Thanks to your help I've my IceCast/LiveIce server up & running but
I?m still having problems:
My IceCast server is on the internal LAN and it's NAT'ed behind an
OpenBSD IPF firewall. Here's my network setup:
Internet ---- [OpenBSD firewall] ---- hub ---- [IceCast server]
| |
+ +
[port 8000 redirected] [NAT'ed 192.168.100.x
box]
NAT is working fine because I can connect to port 8000 from internet.
However, when I telnet to IceCast port and send "GET /stream HTTP/1.O"
command, I can't get the stream from winamp nor IE/Netscape.
When I connect from an internal machine all works fine but when I try
to connect from internet I've get an "404 Stream Not Found" Error. (I
known that the stream exists).
Looking at icecast.log I can see:
[09/Apr/2002:14:00:36] [86:Connection Handler] Kicking unknown 82
[199.6.98.xxx] [No encoder], connected for 2 seconds.
So, What's the "No Encoder" mean?
Or, Where the F* problem is?
Thanks in advance!
Marcelo Gulin
--- >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 at xiph.org' containing only the word 'unsubscribe' in the
body. No subject is needed. Unsubscribe messages sent to the list will
be ignored/filtered.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3584 bytes
Desc: smime.p7s
URL: > ----- Original Message -----
> From: Marcelo Gulin --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gluis at alsuites.com Wed Apr 10 14:33:18 2002
From: gluis at alsuites.com (Luis M. Gallardo D.)
Date: Wed, 10 Apr 2002 10:33:18 -0400
Subject: [icecast] [Q] Web Admin Setting
Message-ID: <3CB44D2E.D36611BA@alsuites.com>
Hi everybody. I don't know if this message was received before. Sorry if
it was.
I set up a streaming server with Icecast 1.3.11, and
everything has been ok until now, except for one thing: when I try to
set a variable from the Icecast Web Interface (/admin=set page) I get
the next message:
"You must supply a variable to be changed"
The link that Icecast generates is something like this:
http://www.theserver:8000/admin?mode=change&argument=
Obviously at the end of the link left the variable's name.
I can only change the variable's value (encoder_password in this case)
if I write directly the next line in the browser:
http://www.theserver:8000/admin?mode=change&argument=encoder_password
Does someone know how to fix this behaviour?
I looked for information on the FAQ (icecast home page) and there is
nothing about technical stuff. I searched through the net but I got
nothing. I looked for on the mail listing archives and it seems like
this problem hasn't been reported.
I hope someone can help me. Thanks in advanced.
Luis Gallardo.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Wed Apr 10 21:49:27 2002
From: jack at xiph.org (Jack Moffitt)
Date: Wed, 10 Apr 2002 15:49:27 -0600
Subject: [icecast] URGENT: security exploit fix
Message-ID: <20020410214927.GQ505@babyjesus.cantcode.com>
To all users:
The recently exploits announced at bugtraq can be fixed by the following
patch. This patch should fix a few other potential holes as well, and I
will post a followup patch soon that is even more thorough.
Note: this exploit would give the attacker priviledges of the user
running icecast. If you are running icecast as a normal user account or
as root, this would be a good time to run it as nobody or some other
unpriveledged account.
Anyone running icecast as root better upgrade fast and do a search for
rootkits or other odd behaviors on their systems.
Regards,
jack.
----- Forwarded message from Jack Moffitt 1.35 +1 -1 icecast/src/source.c
Index: source.c
===================================================================
RCS file: /cvsroot/icecast/src/source.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- source.c 7 Aug 2001 19:16:14 -0000 1.34
+++ source.c 10 Apr 2002 21:36:27 -0000 1.35
@@ -608,7 +608,7 @@
xa_debug (1, "DEBUG: Search local mount points");
- sprintf(pathbuf, "%s:%d%s", req->host[0] ? req->host : "localhost", req->port, req->path);
+ snprintf(pathbuf, BUFSIZE, "%s:%d%s", req->host[0] ? req->host : "localhost", req->port, req->path);
while ((con = avl_traverse(info.sources, &trav)) != NULL)
{
----- End forwarded message -----
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Wed Apr 10 23:05:50 2002
From: jack at xiph.org (Jack Moffitt)
Date: Wed, 10 Apr 2002 17:05:50 -0600
Subject: [icecast] URGENT: icecast 1.3.12 released
Message-ID: <20020410230550.GT505@babyjesus.cantcode.com>
Icecast 1.3.12 fixes the current known exploit for icecast as well as
closing many other potential holes.
Thanks to diz for the original report and analysis and to dave from
jetcafe.org for a comprehensive prophylatic patch.
Again, I warn: DO NOT RUN ICECAST AS ROOT. DO NOT RUN ICECAST AS A
PRIVELEDGED USER.
If you have been running icecast as root, there is an exploit in the
wild. Please take appropriate measures to ensure you weren't affected.
jack.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From marcelo at gulin.com.ar Thu Apr 11 02:41:48 2002
From: marcelo at gulin.com.ar (Marcelo Gulin)
Date: Wed, 10 Apr 2002 23:41:48 -0300
Subject: [icecast] "No Encoder"?
In-Reply-To: <3CB443E5.181008F2@gactr.uga.edu>
Message-ID: <000401c1e102$6e3cd830$0a01a8c0@w2k>
Hi!
Thanks Robin but my problem was mount_fallback set to 0 in
icecast.conf. my fault!
Thanks anyway to all!
Cheers
Marcelo Guiln
-----Original Message-----
From: owner-icecast at xiph.org [mailto:owner-icecast at xiph.org] On Behalf
Of Robin P. Blanchard
Sent: Mi?rcoles, 10 de Abril de 2002 10:54 a.m.
To: icecast at xiph.org; marcelo at gulin.com.ar
Subject: Re: [icecast] "No Encoder"?
What's happening in IPF ? Got any log info there?
> ----- Original Message -----
> From: Marcelo Gulin
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3584 bytes
Desc: smime.p7s
URL: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Thu Apr 11 09:20:36 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Thu, 11 Apr 2002 11:20:36 +0200
Subject: [icecast] user feedback in icecast2
Message-ID: <3CB55564.8070703@tyrell.hu>
A question to icecast2 developers: is there a possibility to have some
sort of user feedback in icecast2? I'm thinking of having a client that
would send some info back though the same socket it receives the stream.
If no such feature currently exist, where should I start to implement it?
Thanks,
Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From thomas at urgent.rug.ac.be Thu Apr 11 13:21:33 2002
From: thomas at urgent.rug.ac.be (Thomas Vander Stichele)
Date: Thu, 11 Apr 2002 15:21:33 +0200 (CEST)
Subject: [icecast] URGENT: icecast 1.3.12 released
In-Reply-To: <5.0.0.25.2.20020411013341.00aa5360@mail.lamrim.com>
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From thomas at urgent.rug.ac.be Thu Apr 11 13:25:26 2002
From: thomas at urgent.rug.ac.be (Thomas Vander Stichele)
Date: Thu, 11 Apr 2002 15:25:26 +0200 (CEST)
Subject: [icecast] URGENT: icecast 1.3.12 released
In-Reply-To: > I updated my spec file and RPM's to use the new release, if you want them
> they're available at
> http://urgent.rug.ac.be/thomas/icecast/
>
> Feedback is welcomed of course.
>
> Thomas
>
> > Dear Jack --
> >
> > On behalf of Icecasters everywhere, thanks for the ultra-fast update!!!
> >
> > I'm also now running safely as non-root, thanks to your advice.
> >
> > Roy
> >
> > At 05:05 PM 04/10/02 -0600, you wrote:
> > >Icecast 1.3.12 fixes the current known exploit for icecast as well as
> > >closing many other potential holes.
> > >
> > >Thanks to diz for the original report and analysis and to dave from
> > >jetcafe.org for a comprehensive prophylatic patch.
> > >
> > >
> > >Again, I warn: DO NOT RUN ICECAST AS ROOT. DO NOT RUN ICECAST AS A
> > >PRIVELEDGED USER.
> > >
> > >
> > >If you have been running icecast as root, there is an exploit in the
> > >wild. Please take appropriate measures to ensure you weren't affected.
> > >
> > >jack.
> > >
> > >--- >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 at xiph.org'
> > >containing only the word 'unsubscribe' in the body. No subject is needed.
> > >Unsubscribe messages sent to the list will be ignored/filtered.
> >
> >
> > --- >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 at xiph.org'
> > containing only the word 'unsubscribe' in the body. No subject is needed.
> > Unsubscribe messages sent to the list will be ignored/filtered.
> >
>
>
--
The Dave/Dina Project : future TV today ! - http://davedina.apestaart.org/
<-*- -*->
Sometimes I wish I was you
so I'd know how it feels
to have me inside of you
<-*- thomas at apestaart.org -*->
URGent, the best radio on the Internet - 24/7 ! - http://urgent.rug.ac.be/
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Thu Apr 11 15:41:00 2002
From: jack at xiph.org (Jack Moffitt)
Date: Thu, 11 Apr 2002 09:41:00 -0600
Subject: [icecast] user feedback in icecast2
In-Reply-To: <3CB55564.8070703@tyrell.hu>
Message-ID: <20020411154059.GB30145@babyjesus.cantcode.com>
> A question to icecast2 developers: is there a possibility to have some
> sort of user feedback in icecast2? I'm thinking of having a client that
> would send some info back though the same socket it receives the stream.
> If no such feature currently exist, where should I start to implement it?
As in feedback on quality of the stream? I think we will probably
experiement with stuff like this, but ti will probably be after we
actually do a few releases of icecast2 code.
jack.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From kerry.cox at ksl.com Thu Apr 11 16:48:12 2002
From: kerry.cox at ksl.com (Kerry Cox)
Date: Thu, 11 Apr 2002 10:48:12 -0600
Subject: [icecast] Simple broadcasting of radio stream
Message-ID: <3CB5BE4C.CEF902DE@ksl.com>
Howdy, been using icecast for a couple years now, and am wanting to move
to the latest icecast and ices. I downloaded and compiled icecast-1.3.12
and ices-0.2.2 and they installed nicely. I got icecast to work alright
with liveice, but I would like to test ices. I have been mucking about
with the config file, but it keeps asking for a playlist. I simply want
to re-encode the radio audio stream being piped into the box's sound
card and encode it using the latest lame. Liveice works fine this way.
Any suggestions for configuring ices to simply re-distribute the audio
stream in MP3 format? Thanks. I can include a copy of my ices config,
but it's just like the sample one provided. I only want it to be
broadcast at 16 kbps and 16khz since it is just talk radio.
You cna listen to the current stream at http://icecast.ksl.com:8000/ on
XMMS. Just looking to make things better and more secure.
Thanks.
Kerry
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From simensen at halogen.org Thu Apr 11 16:48:25 2002
From: simensen at halogen.org (Beau D. Simensen)
Date: Thu, 11 Apr 2002 09:48:25 -0700
Subject: [icecast] alternatives to liveice and darkice
In-Reply-To: <20020411154059.GB30145@babyjesus.cantcode.com>
Message-ID: <00b801c1e178$b32424a0$f136a8c0@hal>
are there any decent alternatives to live audio streaming [via. soundcard]
to darkice or liveice? after a few days fighting with darkice, i finally
managed to bring it up only to see that it takes 55% of my cpu just to
encode one 128kbps stream using libmp3lame. a similar 128kbps stream only
takes up 36% cpu using liveice. maybe i have something configured wrong, but
i was sortof expecting darkice to be a little less resource intensive than
liveice...
maybe i have something configured incorrectly with darkice?
in any event, if there are some great alternatives to liveice or darkice out
there, i'd be happy to look into them. i was extremely happy to have found
ices a few months ago. it had been there all along, just not described or
explained very well. i'm guessing there is something else out there i just
didn't notice yet waiting to be used. =)
thanks!
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From npavel at ituner.com Thu Apr 11 17:01:07 2002
From: npavel at ituner.com (Nicu Pavel)
Date: Thu, 11 Apr 2002 20:01:07 +0300
Subject: [icecast] alternatives to liveice and darkice
In-Reply-To: <00b801c1e178$b32424a0$f136a8c0@hal>
Message-ID: <3CB5C153.2030104@ituner.com>
> are there any decent alternatives to live audio streaming [via. soundcard]
> to darkice or liveice? after a few days fighting with darkice, i finally
> managed to bring it up only to see that it takes 55% of my cpu just to
> encode one 128kbps stream using libmp3lame. a similar 128kbps stream only
> takes up 36% cpu using liveice. maybe i have something configured wrong, but
> i was sortof expecting darkice to be a little less resource intensive than
> liveice...
>
> maybe i have something configured incorrectly with darkice?
By default darkice set quality for mp3 encoding to 2 which is a high
quality setting you can modify the sources to set quality to something
like 7 and this will reduce cpu usage a lot.
There is a patch thats adds quality and vbr,abr mode to be configured by
config file but I am not sure Akos had included yet :).
Nicu.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From dom at earth.li Thu Apr 11 16:58:44 2002
From: dom at earth.li (Dominic Hargreaves)
Date: Thu, 11 Apr 2002 17:58:44 +0100
Subject: [icecast] aliasing in icecast2
Message-ID: <20020411175843.F14267@tirian.magd.ox.ac.uk>
Hi,
I've been investigating setting up an icecast2 proxy to proxy an ogg
stream. In icecast 1, I would use the "alias" configuration entry to set
up the proxying. In icecast 2, I haven't been able to find any mention of
this functionality. Does it exist?
The message http://www.xiph.org/archives/icecast/1546.html implies that it
is possible, but I've not found out how.
If not, are there any obvious alternatives for setting up an ogg streaming
proxy?
Thanks,
Dom.
--
Oops. My brain just hit a bad sector.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Thu Apr 11 17:05:19 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Thu, 11 Apr 2002 19:05:19 +0200
Subject: [icecast] user feedback in icecast2
In-Reply-To: <20020411154059.GB30145@babyjesus.cantcode.com>
Message-ID: <3CB5C24F.8030402@tyrell.hu>
Jack Moffitt wrote:
> As in feedback on quality of the stream? I think we will probably
> experiement with stuff like this, but ti will probably be after we
> actually do a few releases of icecast2 code.
That's one possibility. But the user may send feedback himself, like "I
like what I'm hearing now" or "I don't like what I'm hearing now"
I guess on the technical level, this all would go the same way.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From bowserj at unbc.ca Thu Apr 11 17:07:08 2002
From: bowserj at unbc.ca (Joe Bowser)
Date: Thu, 11 Apr 2002 10:07:08 -0700 (PDT)
Subject: [icecast] alternatives to liveice and darkice
In-Reply-To: <00b801c1e178$b32424a0$f136a8c0@hal>
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From alex at x3ja.co.uk Thu Apr 11 19:42:09 2002
From: alex at x3ja.co.uk (Alex Walker)
Date: Thu, 11 Apr 2002 20:42:09 +0100
Subject: [icecast] Aliases and re-encoding
Message-ID: <20020411204209.K29565@x3ja.co.uk>
I only just joined this list, I did search the archives for relevant
stuff, but didn't find anything. Sorry if I ask some FAQs.
I have a couple of questions now that I have got icecast/ices/libshout
and relevant libraries all installed and running...
i) Is there anywhere that all the XML tags in the config files are
specified? Or are all of them contained in the samples?
ii) The aliases feature that is in v1. Is that available in v2? I
want to basically proxy an incoming Ogg stream to people on my
network to save external bandwidth usage. if using an icecast
server here isn't the best idea - please suggest alternatives.
iii) I am currently streaming some local Ogg files. My processor is
running at 50% all the time whilst doing so, so I assume they
are being decoded and encoded and then sent. Is there a way I
can stop this happening? So they are transmitted as encoded.
I tried setting the nominal-bitrate to the same as the nominal
bitrate at which my Oggs were encoded, but this doesn't seem to
affect behaviour.
Any help will be greatly appreciated.
Alex
--
Contact me @F!
ICQ: #1523424 ( Phasers locked on ) Email: alex at x3ja.co.uk
MSN: x3ja at hotmail.com ( target, Captain. ) Jabber: x3ja at jabber.earth.li
AIM: x3ja ( ) IRC: x3ja (OPN)
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From msmith at labyrinth.net.au Thu Apr 11 23:38:36 2002
From: msmith at labyrinth.net.au (Michael Smith)
Date: Fri, 12 Apr 2002 09:38:36 +1000
Subject: [icecast] aliasing in icecast2
In-Reply-To: <20020411175843.F14267@tirian.magd.ox.ac.uk>
Message-ID: <3.0.5.32.20020412093836.418ca370@mail.labyrinth.net.au>
At 05:58 PM 4/11/02 +0100, you wrote:
>Hi,
>
>I've been investigating setting up an icecast2 proxy to proxy an ogg
>stream. In icecast 1, I would use the "alias" configuration entry to set
>up the proxying. In icecast 2, I haven't been able to find any mention of
>this functionality. Does it exist?
It isn't currently implemented. I guess that's something that'll be
added at some point in the future.
Michael
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From msmith at labyrinth.net.au Thu Apr 11 23:40:39 2002
From: msmith at labyrinth.net.au (Michael Smith)
Date: Fri, 12 Apr 2002 09:40:39 +1000
Subject: [icecast] Aliases and re-encoding
In-Reply-To: <20020411204209.K29565@x3ja.co.uk>
Message-ID: <3.0.5.32.20020412094039.41942120@mail.labyrinth.net.au>
At 08:42 PM 4/11/02 +0100, you wrote:
>I only just joined this list, I did search the archives for relevant
>stuff, but didn't find anything. Sorry if I ask some FAQs.
>
>I have a couple of questions now that I have got icecast/ices/libshout
>and relevant libraries all installed and running...
>
>
>i) Is there anywhere that all the XML tags in the config files are
> specified? Or are all of them contained in the samples?
I think they're all in the examples at the moment. Full documentation
will follow at some point.
>ii) The aliases feature that is in v1. Is that available in v2? I
> want to basically proxy an incoming Ogg stream to people on my
> network to save external bandwidth usage. if using an icecast
> server here isn't the best idea - please suggest alternatives.
Not in version 2 yet. I don't know of any alternatives at the moment.
>iii) I am currently streaming some local Ogg files. My processor is
> running at 50% all the time whilst doing so, so I assume they
> are being decoded and encoded and then sent. Is there a way I
> can stop this happening? So they are transmitted as encoded.
> I tried setting the nominal-bitrate to the same as the nominal
> bitrate at which my Oggs were encoded, but this doesn't seem to
> affect behaviour.
Are you using ices2? If so, turn reencoding off. One of the sample
config files turns it on for one of the two streams it sends - DO
NOT use the config files without significant modifications, they're
examples, not ready-to-use configs.
Michael
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From dominic.hargreaves at magdalen.oxford.ac.uk Thu Apr 11 23:49:16 2002
From: dominic.hargreaves at magdalen.oxford.ac.uk (Dominic Hargreaves)
Date: Fri, 12 Apr 2002 00:49:16 +0100
Subject: [icecast] aliasing in icecast2
In-Reply-To: <3.0.5.32.20020412093836.418ca370@mail.labyrinth.net.au>
Message-ID: <20020412004916.L14267@tirian.magd.ox.ac.uk>
On Fri, Apr 12, 2002 at 09:38:36AM +1000, Michael Smith wrote:
> At 05:58 PM 4/11/02 +0100, you wrote:
> >Hi,
> >
> >I've been investigating setting up an icecast2 proxy to proxy an ogg
> >stream. In icecast 1, I would use the "alias" configuration entry to set
> >up the proxying. In icecast 2, I haven't been able to find any mention of
> >this functionality. Does it exist?
>
> It isn't currently implemented. I guess that's something that'll be
> added at some point in the future.
Ok, thanks.
In case any list members are interested, I found something that fits the
bill for the time being:
http://www.jcraft.com/jroar/
Cheers,
Dom.
--
oOoOo To succeed in politics, it is often necessary to rise above oOoOo
oOoOo your principles. oOoOo
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jacol at vlo.ids.gda.pl Fri Apr 12 00:10:13 2002
From: jacol at vlo.ids.gda.pl (Jacek Jedrzejczak)
Date: Fri, 12 Apr 2002 02:10:13 +0200 (CEST)
Subject: [icecast] pre-buffering
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From doctorj at softhome.net Fri Apr 12 01:54:44 2002
From: doctorj at softhome.net (Josh Hansen)
Date: Thu, 11 Apr 2002 19:54:44 -0600
Subject: [icecast] Aliases and re-encoding
In-Reply-To: <20020411204209.K29565@x3ja.co.uk>
Message-ID: <200204111954.44076.doctorj@softhome.net>
To broadcast without re-encoding, just comment out everything inside the
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From oddsock at oddsock.org Fri Apr 12 02:04:13 2002
From: oddsock at oddsock.org (oddsock)
Date: Thu, 11 Apr 2002 21:04:13 -0500
Subject: [icecast] alternatives to liveice and darkice
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Fri Apr 12 02:03:30 2002
From: jack at xiph.org (Jack Moffitt)
Date: Thu, 11 Apr 2002 20:03:30 -0600
Subject: [icecast] pre-buffering
In-Reply-To:
--
Geoff Shang --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Fri Apr 12 04:52:47 2002
From: jack at xiph.org (Jack Moffitt)
Date: Thu, 11 Apr 2002 22:52:47 -0600
Subject: [icecast] pre-buffering
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gshang at uq.net.au Fri Apr 12 05:40:00 2002
From: gshang at uq.net.au (Geoff Shang)
Date: Fri, 12 Apr 2002 15:40:00 +1000
Subject: [icecast] pre-buffering
In-Reply-To: <20020412045246.GK30145@babyjesus.cantcode.com>
Message-ID:
--
Geoff Shang --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From oddsock at oddsock.org Fri Apr 12 13:54:47 2002
From: oddsock at oddsock.org (oddsock)
Date: Fri, 12 Apr 2002 08:54:47 -0500
Subject: [icecast] pre-buffering
In-Reply-To: <047e01c1e1e0$ed4f36c0$0a01a8c0@cnt496>
Message-ID: <5.1.0.14.0.20020412085121.038e9b90@oddsock.org>
At 12:14 AM 4/12/2002 -0500, you wrote:
> > > Is it true ? And if it is, is there any way to change that behavior ?
> >
> > Yes. Icecast always sends data at the data rate. This behavior will
> > not change in the 1.3.x branch. We will however try and make
> > prebuffering as fast as possible in 2.x (it's currently done the same
> > way, but we plan to add this feature).
how about if you add the ability to send out a static file when the client
first connects....something on the order
of "You are listening to blah blah blah..."...When a client connects you
could fill up (depending on the length of the
file) most of the client buffer (on the icecast2 side) with the static
file, and might eliminate the prebuffering....
it might be easier (and more desirable) to implement then server-side
buffering...
ure, you'd still have to wait to get to the actual stream, but you would
get *something* quickly...
does this make sense ?
oddsock
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gluis at alsuites.com Fri Apr 12 16:55:55 2002
From: gluis at alsuites.com (Luis M. Gallardo D.)
Date: Fri, 12 Apr 2002 12:55:55 -0400
Subject: [icecast] Web Admin Settings
Message-ID: <3CB7119B.72742587@alsuites.com>
Hi everybody. I'm still trying to solve the problem with link in the set
mode page (web admin interface). I have seen in the source file
(item.c) that it is suppose to return and string, but it's returning
nothing. It's ware it can't build the link correctly, because only left
the argument value, and each value is printed previously. I'm going to
keep hacking to try to resolve the problem.
I found an php tool, but I wouldn't use it, because I think that the Web
Interface that comes with Icecast works, and one little problem is not
an excuse to use another tool.
I'm really interested in that the icecast web interface works, because
the server where it is installed has strict access policies and I can't
access to the admin console.
I would thanks to anybody that can help me.
Luis Gallardo.
Caracas - Venezuela.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From daniel at electricrain.com Fri Apr 12 17:43:46 2002
From: daniel at electricrain.com (Dan Sully)
Date: Fri, 12 Apr 2002 10:43:46 -0700
Subject: [icecast] ices resync problem
Message-ID: <20020412174346.GG3755@electricrain.com>
Has anyone had this problem when using ices?
It's linked against lame 3.91 MMX
mpg123: Can't rewind stream by 55 bits!
bitstream problem: resyncing...
command line is
ices -R -c /etc/icecast/ices.conf
reencode is on to a 96 resample bitrate.
-D
--
It does not do to leave a live Dragon out of your calculations..
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From carl at personnelware.com Fri Apr 12 18:20:27 2002
From: carl at personnelware.com (Carl Karsten)
Date: Fri, 12 Apr 2002 13:20:27 -0500
Subject: [icecast] telnet to admin Was Web Admin Settings
In-Reply-To: <3CB7119B.72742587@alsuites.com>
Message-ID: <04b701c1e24e$b919b240$0a01a8c0@cnt496>
> I'm really interested in that the icecast web interface works, because
> the server where it is installed has strict access policies and I can't
> access to the admin console.
If you can access the stream, you should be able to access the admin console.
I have had some problems though:
If I use Win2000's telnet, I can get an admin console.
C:\>telnet 192.168.1.1 8000
screen clears, I blindly (no echo) type: "ADMIN password --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gluis at alsuites.com Fri Apr 12 19:42:27 2002
From: gluis at alsuites.com (Luis M. Gallardo D.)
Date: Fri, 12 Apr 2002 15:42:27 -0400
Subject: [icecast] telnet to admin Was Web Admin Settings
In-Reply-To: <04b701c1e24e$b919b240$0a01a8c0@cnt496>
Message-ID: <3CB738A3.2990D928@alsuites.com>
Carl Karsten wrote:
>
> > I'm really interested in that the icecast web interface works, because
> > the server where it is installed has strict access policies and I can't
> > access to the admin console.
>
> If you can access the stream, you should be able to access the admin console.
Thanks, you're right. But now I would like to resolve the problem,
because I'm no the only administrator and a web interface is more
friendly (special for Win users). In fact, I'm traslanting all the
Icecast Web Interface to spanish.
> Carl Karsten
>
> --- >8 ----
Luis Gallardo.
Caracas - Venezuela.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jacol at ids.gda.pl Fri Apr 12 21:58:00 2002
From: jacol at ids.gda.pl (Jacek Jedrzejczak)
Date: Fri, 12 Apr 2002 23:58:00 +0200 (CEST)
Subject: [icecast] admin console problem on FreeBSD
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From roy at lamrim.com Sat Apr 13 04:21:44 2002
From: roy at lamrim.com (Roy Harvey)
Date: Fri, 12 Apr 2002 21:21:44 -0700
Subject: [icecast] pre-buffering
In-Reply-To: <5.1.0.14.0.20020412085121.038e9b90@oddsock.org>
Message-ID: <5.0.0.25.2.20020412212129.00ac6a00@mail.lamrim.com>
I second the request! Please.
Roy
At 08:54 AM 04/12/02 -0500, you wrote:
>how about if you add the ability to send out a static file when the client
>first connects....something on the order
>of "You are listening to blah blah blah..."...When a client connects you
>could fill up (depending on the length of the
>file) most of the client buffer (on the icecast2 side) with the static
>file, and might eliminate the prebuffering....
>
>it might be easier (and more desirable) to implement then server-side
>buffering...
>
>sure, you'd still have to wait to get to the actual stream, but you would
>get *something* quickly...
>
>does this make sense ?
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From wcarroll at carolina.rr.com Tue Apr 16 02:38:49 2002
From: wcarroll at carolina.rr.com (Wade Carroll)
Date: Mon, 15 Apr 2002 22:38:49 -0400
Subject: [icecast] ices - unable to compile
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gshang at uq.net.au Tue Apr 16 02:48:39 2002
From: gshang at uq.net.au (Geoff Shang)
Date: Tue, 16 Apr 2002 12:48:39 +1000
Subject: [icecast] ices - unable to compile
In-Reply-To:
--
Geoff Shang --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From wcarroll at carolina.rr.com Tue Apr 16 10:50:47 2002
From: wcarroll at carolina.rr.com (Wade Carroll)
Date: Tue, 16 Apr 2002 06:50:47 -0400
Subject: [icecast] ices - unable to compile
In-Reply-To: Hi:
Well, you'll definitely need libshout. We can't really help you much
further unless you tell us the error message you're getting.
Geoff.
--
Geoff Shang --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: config.out
Type: application/octet-stream
Size: 8311 bytes
Desc: config.out
URL: Luis Gallardo.
Caracas - Venezuela.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gshang at uq.net.au Tue Apr 16 13:02:45 2002
From: gshang at uq.net.au (Geoff Shang)
Date: Tue, 16 Apr 2002 23:02:45 +1000
Subject: [icecast] ices - unable to compile
In-Reply-To:
--
Geoff Shang --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From brendan at icecast.org Tue Apr 16 15:37:05 2002
From: brendan at icecast.org (Brendan Cully)
Date: Tue, 16 Apr 2002 11:37:05 -0400
Subject: [icecast] ices - unable to compile
In-Reply-To: Moritz
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From wcarroll at carolina.rr.com Wed Apr 17 01:58:38 2002
From: wcarroll at carolina.rr.com (Wade Carroll)
Date: Tue, 16 Apr 2002 21:58:38 -0400
Subject: [icecast] ices - unable to compile
In-Reply-To: <20020416153705.GA654@xanadu.kublai.com>
Message-ID: On Tuesday, 16 April 2002 at 06:50, Wade Carroll wrote:
> thanks Geoff. I was going to spare everyone the details and continue my
> search but I sincerely appreciate the help.
>
> Here's the output from 'configure', 'make', and 'make install', as best I
> could capture it.
>
> I'm not editing any of the make files or using any flags.
It's hard to tell what went wrong from the make output (many lines seem
to be missing), but my guess is you don't have the perl dev files
installed. If you don't need perl scripting, configure --without-perl.
Otherwise, you'll have to pick up the perl dev package.
-b
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From brendan at icecast.org Wed Apr 17 02:22:58 2002
From: brendan at icecast.org (Brendan Cully)
Date: Tue, 16 Apr 2002 22:22:58 -0400
Subject: [icecast] ices - unable to compile
In-Reply-To: Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From wcarroll at carolina.rr.com Wed Apr 17 11:57:31 2002
From: wcarroll at carolina.rr.com (Wade Carroll)
Date: Wed, 17 Apr 2002 07:57:31 -0400
Subject: [icecast] ices - unable to compile
In-Reply-To: <20020417022258.GB1592@xanadu.kublai.com>
Message-ID: On Tuesday, 16 April 2002 at 21:58, Wade Carroll wrote:
> Thanks...this seems to have gotten me over the compiling "hump".
>
> I get this when I run the ices binary:
>
> ./ices: error while loading shared libraries: libshout.so.1: cannot open
> shared object file: No such file or directory
>
> Are there some path settings that I need ?
You need to run ldconfig. Make sure /usr/local/lib is in the ld.so.conf
file first.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From clayno at mail.w4cl.net Wed Apr 17 12:38:49 2002
From: clayno at mail.w4cl.net (Charles Layno)
Date: Wed, 17 Apr 2002 08:38:49 -0400
Subject: [icecast] Oddsock mulit stream
In-Reply-To: <3CBD24A2.50508@tyrell.hu>
Message-ID: <200204171239.g3HCcpS07644@wr4beg.w4cl.net>
Is there a way to run multiple streams off of one Oddsock DSP with a single
input as you can with the Shoutcast DSP or do you have to relay and have
multiple copies of WinAMP with the DSP running multiple times?
Charles Layno
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From alex at x3ja.co.uk Wed Apr 17 17:12:56 2002
From: alex at x3ja.co.uk (Alex Walker)
Date: Wed, 17 Apr 2002 18:12:56 +0100
Subject: [icecast] ices - unable to compile
In-Reply-To:
--
Luis M. Gallardo D.
Linux User #130502
Caracas - Venezuela
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gluis at alsuites.com Wed Apr 17 23:14:07 2002
From: gluis at alsuites.com (Luis Gallardo)
Date: Wed, 17 Apr 2002 19:14:07 -0400
Subject: [icecast] reconnecting liveice
In-Reply-To: <3CBDF2DD.E55FF757@alsuites.com>
Message-ID: <3CBE01BF.1DA8B045@alsuites.com>
I just fix it. I realized when there is a connection to the Icecast
sever the output of ps ax | grep liveice is :
20566 ? S 0:05 /home/lgallard/liveice/liveice -@ 2 -F
/home/lgallard
20568 ? S 0:00 /home/lgallard/liveice/liveice -@ 2 -F
/home/lgallard
20569 ? S 4:22 notlame -m j -s 44.100000 -b 32 -r -x
.liveice_temp_f
20676 pts/19 S 0:00 grep live
And when there isn't a connection to the server:
20566 ? S 0:06 /home/lgallard/liveice/liveice -@ 2 -F
/home/lgallard
20569 ? S 4:41 notlame -m j -s 44.100000 -b 32 -r -x
.liveice_temp_f
20731 pts/19 S 0:00 grep live
So, I did a script that counts the number of lines and reconnects
liveice to Icecast if it is needed.
Here you the perl script:
###################################
#!/usr/bin/perl
$_= `ps ax | grep live | wc -l `;
print $_;
if(m/5/){
print `echo "LiveIce is already running"`;
`echo "It's up" > radio.status`;
}
else{
$_= `ps axr`;
#print $_;
if(!m/live/){
print `echo "Starting LiveIce"`;
`echo "It was NOT running" > radio.status`;
`/usr/bin/killall liveice`;
`/home/user/liveice/liveice -@ 2 -F /home/user/liveice/liveice.cfg`;
print `echo "[OK]\n"`;
}
}
# End of the script
####################################
Don't ask me why 5 instead of 4, because I don't know either.
Luis Gallardo wrote:
>
> Hi everybody.
>
> Is there a way to set up liveice so it reconnects to Icecast
> automatically when the connection is lost?.
>
> I tried to automate this process by using a crontab and a perl script,
> but when liveice is run with the -@ 2 option It seams It doesn't realize
> that the connection has been broken and continues "running". If I do ps
> ax, I can see liveice is "running", but I know It's not, because Icecast
> reports that there aren't connected sources.
>
> I hope you can help me.
>
> Thanks.
>
--
Luis M. Gallardo D.
Linux User #130502
Caracas - Venezuela
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From wcarroll at carolina.rr.com Thu Apr 18 11:08:45 2002
From: wcarroll at carolina.rr.com (Wade Carroll)
Date: Thu, 18 Apr 2002 07:08:45 -0400
Subject: [icecast] ices - unable to compile
In-Reply-To: <20020417181256.R29517@x3ja.co.uk>
Message-ID: On Wed, Apr 17, 2002 at 07:57:31AM -0400, Wade Carroll wrote:
> Now I'm getting "bad password" errors. "hackme" is the default
> password in icecast and i'm running ices with the -P hackme flag.
I had issues with passwords and various things - it turned out that
crypt support was enabled, so it thought that "hackme" was the result of
encrypting some string. So try doing "mkpasswd hackme" and putting that
in your icecast config (but keep it as hackme in your ices config).
I could be completely wrong... I usually am.
Alex.
--
----------( --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From dave at worklife.com Thu Apr 18 14:15:35 2002
From: dave at worklife.com (Dave Snodgrass)
Date: Thu, 18 Apr 2002 10:15:35 -0400
Subject: [icecast] ices - perl/python modules
In-Reply-To: ./dave
Segfault Output:
DEBUG: Done sending
DEBUG: Interpreting [ices_perl_get_next]
DEBUG: perl [ices_perl_get_next] returned 1 values, last
[/usr/local/mp3/Battle Axe Warriors - Swollen Members - Bad
Dreams/Swollen Members -16- Dark Riders (ft Buc Fifty).mp3]
DEBUG: Done interpreting [ices_perl_get_next]
DEBUG: Interpreting [ices_perl_get_current_lineno]
DEBUG: perl [ices_perl_get_current_lineno] returned 1 values, last [475]
DEBUG: Done interpreting [ices_perl_get_current_lineno]
DEBUG: ID3v1 song: Dark Riders (ft Buc Fifty)
DEBUG: ID3v1 artist: Swollen Members
DEBUG: ID3v2 tag size is 1908 bytes
DEBUG: Skipping to MP3 data
DEBUG: Layer: III Version: MPEG-1 Frequency: 44100
DEBUG: Bitrate: 192 kbit/s Padding: 1 Mode: j-stereo
DEBUG: Ext: 1 Mode_Ext: 2 Copyright: 0 Original: 1
DEBUG: Error Protection: 0 Emphasis: 0 Stereo: 2
Playing /usr/local/mp3/Battle Axe Warriors - Swollen Members - Bad
Dreams/Swollen Members -16- Dark Riders (ft Buc Fifty).mp3
DEBUG: Updated metadata on /stream1 to: Swollen Members - Dark Riders
(ft Buc Fifty)
Segmentation fault
[dave at linsux usr]#
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From djpandur at charthitzradio.de Thu Apr 18 16:38:20 2002
From: djpandur at charthitzradio.de (DJ Pandur2000)
Date: Thu, 18 Apr 2002 18:38:20 +0200
Subject: [icecast] Source Reconnect Problem in
Message-ID: Can u help me??
Stefan Jacobi
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gluis at alsuites.com Thu Apr 18 18:06:31 2002
From: gluis at alsuites.com (Luis Gallardo)
Date: Thu, 18 Apr 2002 14:06:31 -0400
Subject: [icecast] Source Reconnect Problem in
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From eba78334e1320t73 at yahoo.com Fri Apr 19 04:55:22 2002
From: eba78334e1320t73 at yahoo.com (eba78334e1320t73 at yahoo.com)
Date: Fri Apr 19 04:55:22 2002
Subject: [icecast] attention:better sexlife 8912IOqd8-13-11
Message-ID: <034e11a74c2e$7734c5d8$2ed65bb0@rjukfi>
3572OJDd3-820OFYa7562mjYY3-291ZtEm7344YIUX3-307ISl46
The nations number one seller of all natural aphrodisiacs
For men and women
Featured on Hard Copy
Revitalize your sexlife today
Now on special 2 for 1
http://208.252.67.221/5680/cgi-bin/sexinbottle/index.cgi?8010
1942JjZL9-341eKLC4512cjyd1-213tNfF3506xcuy3-658xGVC6776PTsc1-840l60.+-j?!?????i??0?????????+????j?i???r?h??Z??m????"q???+N?????r??y????b?X????u?????z?"q????????????r??j)??
'?+a{
+v?????&??{ay???,???r?????R{.n?+???z???,z{m??^?+-?)em?????w?????
From wcarroll at carolina.rr.com Fri Apr 19 16:17:11 2002
From: wcarroll at carolina.rr.com (Wade Carroll)
Date: Fri, 19 Apr 2002 12:17:11 -0400
Subject: [icecast] icecast permissions
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Fri Apr 19 16:38:26 2002
From: jack at xiph.org (Jack Moffitt)
Date: Fri, 19 Apr 2002 10:38:26 -0600
Subject: [icecast] icecast permissions
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From wcarroll at carolina.rr.com Fri Apr 19 18:01:36 2002
From: wcarroll at carolina.rr.com (wcarroll at carolina.rr.com)
Date: Fri, 19 Apr 2002 18:01:36 GMT
Subject: [icecast] more fun with LAME - error in bitstream?
Message-ID: <067bc3601181342WEBMAIL1@webmail1.carolina.rr.com>
Hi folks! Having trouble with re-encoding to 160Kbps.
I have:
Linux-Mandrake 8.2
Icecast 1.3.12
IceS 0.2.2 source
Lame 3.92
Hardware is: Celeron 533 w/256MB RAM, 40GB Disk
All seems to work at first but after a few songs it craps
out and give me an ERROR WITH BITSTREAM (or something real
close...sorry).
ALL of my MP3s are encoded using the --r3mix flag (VBR)
with LAME 3.91 or 3.89.
All works great if I stream the VBR straight out (works
days on end with NO problems...just a little bandwidth
unfriendly).
Any possible causes here? I'm pretty sure my MP3s are good
if VBR is OK.
Should I back off to Lame 3.91?
Could my LOG file permission errors be the root cause
(different thread)?
Thanks in advance for the help!
Wade
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From rau at campoalto.edu.py Fri Apr 19 18:29:48 2002
From: rau at campoalto.edu.py (Ra鷏 Guti閞rez Segal閟)
Date: Fri, 19 Apr 2002 14:29:48 -0400 (PYT)
Subject: [icecast] no luck with streamers
In-Reply-To: <067bc3601181342WEBMAIL1@webmail1.carolina.rr.com>
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From shade at chemlab.org Fri Apr 19 19:38:58 2002
From: shade at chemlab.org (steve j. kondik)
Date: 19 Apr 2002 15:38:58 -0400
Subject: [icecast] yp.icecast.org
Message-ID: <1019245138.25271.3.camel@crackrock>
hey can someone fix this so that the shoutcast clusters dont spam up the
listings? :>
-s
--
http://chemlab.org - email shade-pgpkey at chemlab.org for pgp public key
chemlab radio! - drop out @ http://mp3.chemlab.org:8000 24-7-365
"i could build anything if i could just find my tools.."
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 229 bytes
Desc: This is a digitally signed message part
URL: Luis Gallardo
Caracas - Venezuela.
Ra?l Guti?rrez Segal?s wrote:
>
> Hi,
>
> I want to stream to an Icecast server (current version) that is up and running and I have tried plenty of streamers and no go..
>
> Any advices? I want to stream from linein (is that through /dev/dsp???) but had no luck with darkice, shout... no go.
>
> Thanks!
>
> Raul Gutierrez S.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Sat Apr 20 09:44:48 2002
From: darkeye at tyrell.hu (Maroy Akos)
Date: Sat, 20 Apr 2002 11:44:48 +0200 (CEST)
Subject: [icecast] no luck with streamers
In-Reply-To: <3CC0B9B4.E5D20516@alsuites.com>
Message-ID: Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From rau at campoalto.edu.py Sat Apr 20 12:02:00 2002
From: rau at campoalto.edu.py (Ra鷏 Guti閞rez Segal閟)
Date: Sat, 20 Apr 2002 08:02:00 -0400 (PYT)
Subject: [icecast] no luck with streamers
In-Reply-To: On Sat, 20 Apr 2002, Maroy Akos wrote:
> Ra?l Guti?rrez Segal?s wrote:
> >
> > Hi,
> >
> > I want to stream to an Icecast server (current version) that is up and running and I have tried plenty of streamers and no go..
> >
> > Any advices? I want to stream from linein (is that through /dev/dsp???) but had no luck with darkice, shout... no go.
>
> What were your problems with darkice?
>
>
> Akos
>
>
> --- >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 at xiph.org'
> containing only the word 'unsubscribe' in the body. No subject is needed.
> Unsubscribe messages sent to the list will be ignored/filtered.
>
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From rau at campoalto.edu.py Sat Apr 20 12:01:12 2002
From: rau at campoalto.edu.py (Ra鷏 Guti閞rez Segal閟)
Date: Sat, 20 Apr 2002 08:01:12 -0400 (PYT)
Subject: [icecast] no luck with streamers
In-Reply-To: <3CC0B9B4.E5D20516@alsuites.com>
Message-ID: On Fri, 19 Apr 2002, Luis M. Gallardo D. wrote:
> Did you try liveice?
>
> I'm using it without problems. I didn't try another one, but I can
> suggest you liveice. In my case I'm taking the output from an radio set
> which is connected to a sound card.
>
> I hope It help you.
>
>
> Luis Gallardo
> Caracas - Venezuela.
>
> Ra?l Guti?rrez Segal?s wrote:
> >
> > Hi,
> >
> > I want to stream to an Icecast server (current version) that is up and running and I have tried plenty of streamers and no go..
> >
> > Any advices? I want to stream from linein (is that through /dev/dsp???) but had no luck with darkice, shout... no go.
> >
> > Thanks!
> >
> > Raul Gutierrez S.
>
>
>
> --- >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 at xiph.org'
> containing only the word 'unsubscribe' in the body. No subject is needed.
> Unsubscribe messages sent to the list will be ignored/filtered.
>
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Sat Apr 20 12:13:34 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Sat, 20 Apr 2002 14:13:34 +0200
Subject: [icecast] no luck with streamers
In-Reply-To: Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gluis at alsuites.com Sat Apr 20 14:11:38 2002
From: gluis at alsuites.com (Luis M. Gallardo D.)
Date: Sat, 20 Apr 2002 10:11:38 -0400
Subject: [icecast] no luck with streamers
In-Reply-To:
---
Luis Gallardo.
Caracas - Venezuela.
Ra?l Guti?rrez Segal?s wrote:
>
> The same as wtih liveice, it stops while trying to open /dev/dsp according to strace.
>
> On Sat, 20 Apr 2002, Maroy Akos wrote:
>
> > Ra?l Guti?rrez Segal?s wrote:
> > >
> > > Hi,
> > >
> > > I want to stream to an Icecast server (current version) that is up and running and I have tried plenty of streamers and no go..
> > >
> > > Any advices? I want to stream from linein (is that through /dev/dsp???) but had no luck with darkice, shout... no go.
> >
> > What were your problems with darkice?
> >
> >
> > Akos
> >
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From pozar at lns.com Sat Apr 20 14:16:48 2002
From: pozar at lns.com (Tim Pozar)
Date: Sat, 20 Apr 2002 07:16:48 -0700
Subject: [icecast] no luck with streamers
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From malletc3 at cti.ecp.fr Sat Apr 20 21:43:31 2002
From: malletc3 at cti.ecp.fr (C閐ric Mallet)
Date: Sat, 20 Apr 2002 23:43:31 +0200
Subject: [icecast] MuSe problem
Message-ID: <02042023433100.09203@mallet.via.ecp.fr>
I cannot connect MuSe (using line in) to my icecast server.
I get thoses messages repeting :
Internal buffer inconsistency. flushbits <> ResvSizebit reservoir error:
l3_side->main_data_begin: 1640
Resvoir size: 1792
resv drain (post) 5
resv drain (pre) 0
header and sideinfo: 120
data bits: 679
total bits: 804 (remainder: 4)
bitsperframe: 864
and Muse does not connect.
By the way, I would like to run Muse without its GUI. Is it possible ? Is
there a conf file where I could set everything ?
Thanx
Ced
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From simensen at halogen.org Sun Apr 21 00:00:02 2002
From: simensen at halogen.org (Beau D. Simensen)
Date: Sat, 20 Apr 2002 17:00:02 -0700
Subject: [icecast] admin 'rehash' broken in icecast 1.3.12?
In-Reply-To: <200204160450.g3G4okb42571@hokkshideh2.jetcafe.org>
Message-ID: <005e01c1e8c7$8be52230$f236a8c0@hal>
I tried admin rehash for the first time since upgrading to 1.3.12 today. The
rehash took at least 30 seconds [If not longer -- I didn't time it very
closely] and icecast slowly snuck up to 99% CPU usage. I tried issuing the
'alias' command just to try and get a response from the console and that
never responded. [I waited about two minutes]
I had the same experience both of my servers, one RedHat 7.2 and the other
FreeBSD 4.2-RELEASE. Restarting icecast seemed to fix the problem, but being
able to add aliases to the config and rehash was a really nice feature to
have. Did this break between 1.3.10 and 1.3.12? I had 1.3.11 somewhere in
there as well but I'm not sure I used rehash from the console while I was
running 1.3.11...
Thanks,
bds
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jaromil at dyne.org Sun Apr 21 13:18:17 2002
From: jaromil at dyne.org (jaromil)
Date: Sun, 21 Apr 2002 14:18:17 +0100
Subject: [icecast] MuSe problem
In-Reply-To: <02042023433100.09203@mallet.via.ecp.fr>
Message-ID: <20020421131817.GA17935@dyne.org>
please note MuSE bugreporting mailinglist is here muse at dyne.org
On Sat, Apr 20, 2002 at 11:43:31PM +0200, C?dric Mallet wrote:
> I cannot connect MuSe (using line in) to my icecast server.
> I get thoses messages repeting :
>
> Internal buffer inconsistency. flushbits <> ResvSizebit reservoir error:
> l3_side->main_data_begin: 1640
> Resvoir size: 1792
> resv drain (post) 5
> resv drain (pre) 0
> header and sideinfo: 120
> data bits: 679
> total bits: 804 (remainder: 4)
> bitsperframe: 864
>
> and Muse does not connect.
i see there is a problem in the way i'm handling lame
it does'nt happens very often but i reached to reproduce it once
i'm working on that
> By the way, I would like to run Muse without its GUI. Is it possible ?
yes
> Is there a conf file where I could set everything ?
./muse --help for commandline settings
or look for config files into ~/.muse (defaults created at first run)
--
jaromil ][ http://dyne.org ][ GnuPG _key__id_
EDEE F1B9 DC92 76C0 6D46 D77A 58B0 82D6 (5B6E 6D97)
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From rau at campoalto.edu.py Mon Apr 22 12:04:59 2002
From: rau at campoalto.edu.py (Ra鷏 Guti閞rez Segal閟)
Date: Mon, 22 Apr 2002 08:04:59 -0400 (PYT)
Subject: [icecast] where does linein writes to
In-Reply-To: <20020420071648.B6729@lns.com>
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Mon Apr 22 12:25:37 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Mon, 22 Apr 2002 14:25:37 +0200
Subject: [icecast] where does linein writes to
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From rau at campoalto.edu.py Mon Apr 22 14:28:13 2002
From: rau at campoalto.edu.py (Ra鷏 Guti閞rez Segal閟)
Date: Mon, 22 Apr 2002 10:28:13 -0400 (PYT)
Subject: [icecast] where does linein writes to
In-Reply-To: <3CC40141.3000408@tyrell.hu>
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Mon Apr 22 14:57:53 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Mon, 22 Apr 2002 16:57:53 +0200
Subject: [icecast] where does linein writes to
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From dave at jetcafe.org Mon Apr 22 17:25:43 2002
From: dave at jetcafe.org (Dave Hayes)
Date: Mon, 22 Apr 2002 10:25:43 -0700
Subject: [icecast] admin 'rehash' broken in icecast 1.3.12?
In-Reply-To: <[icecast] admin 'rehash' broken in icecast 1.3.12?>
Message-ID: <200204221725.g3MHPmb22379@hokkshideh2.jetcafe.org>
Beau D Simensen --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From rsteding at tecwise.com Wed Apr 24 07:42:36 2002
From: rsteding at tecwise.com (Raymond)
Date: Wed, 24 Apr 2002 00:42:36 -0700
Subject: [icecast] Auto Archiving function for Icecast.
Message-ID: <3CC661EC.6B88B90B@tecwise.com>
Hello:
Does anyone know how to set up auto-archiving with icecast. I have an
encoder coming in with a radio station. I want to create hourly mp3
archives of their streams that are coming to my icecast server. Got any
ideas?
Raymond
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Wed Apr 24 08:03:08 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Wed, 24 Apr 2002 10:03:08 +0200
Subject: [icecast] Auto Archiving function for Icecast.
In-Reply-To: <3CC661EC.6B88B90B@tecwise.com>
Message-ID: <3CC666BC.8080908@tyrell.hu>
Raymond,
> Does anyone know how to set up auto-archiving with icecast. I have an
> encoder coming in with a radio station. I want to create hourly mp3
> archives of their streams that are coming to my icecast server. Got any
> ideas?
I have a set of scripts that do this for me. The idea basically is:
- encode in 4 hour sessions, that is 6 sessions per day (use 4 hour-long
darkice recording sessions, and cron to start the new recording every 4
hours)
- use the remote dump feature of icecast to dump the streams in the
server, each session under a different name. The result is something like:
/path/to/mp3/dump/session1.mp3
/path/to/mp3/dump/session2.mp3
...
/path/to/mp3/dump/session6.mp3
- have a script, that at a given time cuts out the last half hour of the
current stream dump, and call this script from cron every half hour.
Here the idea is, that from the time point, you can calculate:
- what is the current dump file called
- what is the last half hour (e.g. at 10:32 it is 10:00 - 10:30)
- where is this last half hour in the current dump (e.g. 10:00 - 10:30
am is in the 3rd session, at offset 2:00 - 2:30, since session 3 is from
8:00 - 12:00)
As you know the bitrate of the stream, you can calculate the byte offset
and amount of bytes to cut from the dump file (e.g. 128 kb/s stream is
((128 / 8) * 60) kB/minute, a half hour section is ((128 / 8) * 60 *
1000 * 30) bytes)
- use dd to cut the desired mp3 data from the current dump, e.g.:
dd if=session3.mp3 of=1000.mp3 bs=BYTES_PER_HALF_HOUR skip=4 count=1
where skip=4 tells dd to skip the first 4 half-hour segments
You can cut with dd if you take care to cut by the mp3 frame boundaries.
Of course, this only works with fixed bitrate encoding. Also, some mp3
experts would argue that there will be some mess at the boundries of the
cut, as mp3 can spread information across several frames.
Nevertheless, I didn't find a convenient command line mp3 cutting tool
(didn't look much either, after found this solution with dd)
Of course, you can simply adjust this pattern to your needs (hour-long
cuts, different number of recording sessions, etc.)
Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From bikepunx at bellatlantic.net Tue Apr 23 05:16:34 2002
From: bikepunx at bellatlantic.net (jim)
Date: Tue, 23 Apr 2002 01:16:34 -0400
Subject: [icecast] stream sounds like poo for no apparent reason
Message-ID: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From darkeye at tyrell.hu Wed Apr 24 15:44:06 2002
From: darkeye at tyrell.hu (Akos Maroy)
Date: Wed, 24 Apr 2002 17:44:06 +0200
Subject: [icecast] Auto Archiving function for Icecast.
In-Reply-To: <3CC6C050.378177B1@tecwise.com>
Message-ID: <3CC6D2C6.5060100@tyrell.hu>
Raymond wrote:
> A remote dump feature of icecast.
>
> Ok I'll see if I can find any info on the dump feature.
You can configure this with your streaming tool. You have options for
this in both liveice and darkice.
> Very clear description. Thanks.
Hope it helps.
Akos
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From alex at x3ja.co.uk Wed Apr 24 17:14:27 2002
From: alex at x3ja.co.uk (Alex Walker)
Date: Wed, 24 Apr 2002 18:14:27 +0100
Subject: [icecast] stream sounds like poo for no apparent reason
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From hathaway at munkynet.org Wed Apr 24 19:16:09 2002
From: hathaway at munkynet.org (Samuel Hathaway)
Date: Wed, 24 Apr 2002 15:16:09 -0400 (EDT)
Subject: [icecast] stream sounds like poo for no apparent reason
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From John.Benninghoff at Rbcdain.com Wed Apr 24 19:27:50 2002
From: John.Benninghoff at Rbcdain.com (Benninghoff, John)
Date: Wed, 24 Apr 2002 14:27:50 -0500
Subject: [icecast] stream sounds like poo for no apparent reason
In-Reply-To: <[icecast] stream sounds like poo for no apparent reason>
Message-ID: On Wed, 24 Apr 2002, Samuel Hathaway wrote:
> On Wed, 24 Apr 2002, Alex Walker wrote:
>
> > On Tue, Apr 23, 2002 at 01:16:34AM -0400, jim wrote:
> > > here at wkdu.org our minds are blown trying to figure out what our
> > > problem is, we are using a dell optiplex gx1 with a soundblaster live
> > > card. we are getting a nasty hum on the line in. the thing is we plug
> > > a cd player directly into the soundcard the hum goes away and when we
> > > plug the line in into anything else there is no hum, so the question i
> > > ask where is the hum coming from? we are completely boggled. we are
> > > using the latest version of iceccast along with darkice.7.....if this
> > > wasnt enough i have a a lit paper due tomm that has made my head hurt
> > > on top of this......
>
> Hmm, since no other audio sources produce a hum, I'd suspect the line from
> your board or something, not a computer problem. We at WRUR (wrur.org)
> have a really long run from the front of the studio to the room with the
> servers, and there's a hum.
> -samuel
Hmm, I may have read your post wrong. Are you saying that when you plug
the line from the studio into another amp (or something) you don't get the
hum? If so, it might be a grounding issue in the sound card. If you have a
mixer lying around, plug the line from the studio into it and then run the
output from the mixer to the sound card.
-samuel
by the way, my friend dennis's friend kelly is a dj there i think. heh.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From John.Benninghoff at Rbcdain.com Wed Apr 24 19:29:19 2002
From: John.Benninghoff at Rbcdain.com (Benninghoff, John)
Date: Wed, 24 Apr 2002 14:29:19 -0500
Subject: [icecast] stream sounds like poo for no apparent reason
In-Reply-To: <[icecast] stream sounds like poo for no apparent reason>
Message-ID: This does sound like a grounding problem. My (limited) understanding is that when you have 2 audio components plugged in to different outlets, there can be a voltage differential between the ground on the 2 devices, which will create an electrical flow between the 2 components, which is the source of the hum. I have had this problem before and solved with a ground loop isolator, (from Radio Shack) which somehow blocks the flow, and is cheaper than a mixer. I would guess that a mixer has something like this built in.
There are other possible causes for this, but I would also suspect that it is not a computer problem, but a physical problem.
-----Original Message-----
From: Samuel Hathaway [mailto:hathaway at munkynet.org]
Sent: Wednesday, April 24, 2002 2:16 PM
To: icecast at xiph.org
Subject: Re: [icecast] stream sounds like poo for no apparent reason
On Wed, 24 Apr 2002, Samuel Hathaway wrote:
> On Wed, 24 Apr 2002, Alex Walker wrote:
>
> > On Tue, Apr 23, 2002 at 01:16:34AM -0400, jim wrote:
> > > here at wkdu.org our minds are blown trying to figure out what our
> > > problem is, we are using a dell optiplex gx1 with a soundblaster live
> > > card. we are getting a nasty hum on the line in. the thing is we plug
> > > a cd player directly into the soundcard the hum goes away and when we
> > > plug the line in into anything else there is no hum, so the question i
> > > ask where is the hum coming from? we are completely boggled. we are
> > > using the latest version of iceccast along with darkice.7.....if this
> > > wasnt enough i have a a lit paper due tomm that has made my head hurt
> > > on top of this......
>
> Hmm, since no other audio sources produce a hum, I'd suspect the line from
> your board or something, not a computer problem. We at WRUR (wrur.org)
> have a really long run from the front of the studio to the room with the
> servers, and there's a hum.
> -samuel
Hmm, I may have read your post wrong. Are you saying that when you plug
the line from the studio into another amp (or something) you don't get the
hum? If so, it might be a grounding issue in the sound card. If you have a
mixer lying around, plug the line from the studio into it and then run the
output from the mixer to the sound card.
-samuel
by the way, my friend dennis's friend kelly is a dj there i think. heh.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From bikepunx at bellatlantic.net Wed Apr 24 18:50:03 2002
From: bikepunx at bellatlantic.net (jim)
Date: Wed, 24 Apr 2002 14:50:03 -0400
Subject: [icecast] stream sounds like poo for no apparent reason
In-Reply-To: <20020424181427.L23497@x3ja.co.uk>
Message-ID: >On Tue, Apr 23, 2002 at 01:16:34AM -0400, jim wrote:
>> here at wkdu.org our minds are blown trying to figure out what our
>> problem is, we are using a dell optiplex gx1 with a soundblaster live
>> card. we are getting a nasty hum on the line in. the thing is we plug
>> a cd player directly into the soundcard the hum goes away and when we
>> plug the line in into anything else there is no hum, so the question i
>> ask where is the hum coming from? we are completely boggled. we are
>> using the latest version of iceccast along with darkice.7.....if this
>> wasnt enough i have a a lit paper due tomm that has made my head hurt
>> on top of this......
>
>Are you using ALSA? I had a weird problem with ALSA and hum on my SB
>Live. I finally figured out I had to unmute the last emu10k1 channel in
>alsamixer. Try muting/unmuting some of them if you are indeed using
>ALSA.
>
>HTH
>
>Alex.
>
>--
>Mausoleum: The final and funniest folly of the rich.
>-- Ambrose Bierce
>
>--- >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 at xiph.org'
>containing only the word 'unsubscribe' in the body. No subject is needed.
>Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From simensen at halogen.org Wed Apr 24 20:17:29 2002
From: simensen at halogen.org (Beau D. Simensen)
Date: Wed, 24 Apr 2002 13:17:29 -0700
Subject: [icecast] Another 1.3.12 "bug"...
In-Reply-To: --- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From webmaster at chat-radio.de Wed Apr 24 20:33:32 2002
From: webmaster at chat-radio.de (webmaster at chat-radio.de)
Date: Wed, 24 Apr 2002 22:33:32 +0200
Subject: [icecast] Another 1.3.12 "bug"...
In-Reply-To: <02e901c1ebcd$12326480$c904a8c0@vaiolaptop>
Message-ID: Pandur
-----Original Message-----
From: owner-icecast at xiph.org [mailto:owner-icecast at xiph.org]On Behalf Of
Beau D. Simensen
Sent: Wednesday, April 24, 2002 10:17 PM
To: icecast at xiph.org
Subject: [icecast] Another 1.3.12 "bug"...
This might have been something else that changed since I've upgraded. Or
maybe I simply never noticed before.
If one of my sources die, the clients will eventually get bumped over to
another source that hasn't died yet. I'm not sure what functionality this is
called or how [or if] this can be disabled. I turned off mountpoint
fallback, which I would have thought would have taken care of this problem.
I'd rather this not happen as listeners might be confused if they get
switche dover toa different stream and don't notice. They might decide they
don't like the stream anymore and go away when they were infact listening to
a completely seperate station.
Any help would be greatly appreciated.
Thanks!
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From mmrmedia at yahoo.com Wed Apr 24 21:56:59 2002
From: mmrmedia at yahoo.com (maart b)
Date: Wed, 24 Apr 2002 14:56:59 -0700 (PDT)
Subject: [icecast] warnings compiling icecast-1.3.12
Message-ID: <20020424215659.62398.qmail@web14909.mail.yahoo.com>
Hi
I have some warnings compiling icecast and i would
like to know if they are serious problems
it seem to work fine i think
i am not a programmer so the warnings say nothing to
me
ystem slackware 8 i386
these are the warnings
gcc -DHAVE_CONFIG_H -I. -I. -I.. -D_REENTRANT -g -O2
-Wall -c main.c
main.c: In function `clean_shutdown':
main.c:547: warning: type defaults to `int'
declaration of `main_shutting_down'
gcc -DHAVE_CONFIG_H -I. -I. -I.. -D_REENTRANT -g -O2
-Wall -c client.c
client.c:93: warning: `client_send_fake_file' declared
`static' but never defined
gcc -DHAVE_CONFIG_H -I. -I. -I.. -D_REENTRANT -g -O2
-Wall -c avl_functions.c
avl_functions.c: In function `compare_directories':
avl_functions.c:310: warning: passing arg 2 of
`snprintf' makes integer from pointer without a cast
gcc -DHAVE_CONFIG_H -I. -I. -I.. -D_REENTRANT -g -O2
-Wall -c static.c
static.c: In function `send_file_to_socket':
static.c:237: warning: unused variable `suffix'
static.c:235: warning: unused variable `buf'
gcc -DHAVE_CONFIG_H -I. -I. -I.. -D_REENTRANT -g -O2
-Wall -c ice_string.c
ice_string.c: In function `safe_strcat':
ice_string.c:337: warning: unused variable `size'
thanks in advance
Mario
__________________________________________________
Do You Yahoo!?
Yahoo! Games - play chess, backgammon, pool and more
http://games.yahoo.com/
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From gtgbr at gmx.net Wed Apr 24 23:04:16 2002
From: gtgbr at gmx.net (Moritz Grimm)
Date: Thu, 25 Apr 2002 01:04:16 +0200
Subject: [icecast] Compiling icecast2 under OpenBSD 3.1
Message-ID: <3CC739F0.D3BA476@gmx.net>
Hi,
Finally, I succeeded in compiling Icecast2 under OpenBSD. It neither
worked for me on OBSD 3.0 nor my old 2.8, but the new 3.1 appears to
come with more icecast-friendly (p)threads.
OpenBSD 3.1 isn't officially released, yet, but installing a current
snapshot and getting the sources via CVS (module OPENBSD_3_1_BASE,
patient people also can already upgrade from scratch only with the
sources) worked for me.
Compiling libshout failed because src/mp3.c included Moritz
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From msmith at labyrinth.net.au Thu Apr 25 01:37:23 2002
From: msmith at labyrinth.net.au (Michael Smith)
Date: Thu, 25 Apr 2002 11:37:23 +1000
Subject: [icecast] Compiling icecast2 under OpenBSD 3.1
In-Reply-To: <3CC739F0.D3BA476@gmx.net>
Message-ID: <3.0.5.32.20020425113723.41961690@mail.labyrinth.net.au>
>
>Some comments about ices2:
>
>It is currently impossible to compile it under *BSD, at least afaik.
>src/im_sun.c includes stropts.h, which doesn't come with OpenBSD. After
>feeding one .h file after another from a linux box, it finally wanted
>gnu/stubs.h. There will never be GNU stuff in *BSD, so that must be
>solved differently.
Why on earth are you trying to compile im_sun.c on a non-solaris machine?
That file is Sun audio device support. Is the autoconf/automake magic
magically screwed there? Anyway, just don't compile that file at all -
it's used only on machines with sun audio devices (which as far as I know
means solaris only). im_oss.c serves the same purpose for OSS audio, which
is probably what openbsd uses (this is needed if you want to do live
audio encoding/streaming, from line-in or something like that)
Michael
--- >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 at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
From jack at xiph.org Thu Apr 25 01:48:53 2002
From: jack at xiph.org (Jack Moffitt)
Date: Wed, 24 Apr 2002 19:48:53 -0600
Subject: [icecast] Compiling icecast2 under OpenBSD 3.1
In-Reply-To: <3CC739F0.D3BA476@gmx.net>
Message-ID: <20020425014853.GB1103@babyjesus.cantcode.com>
> Finally, I succeeded in compiling Icecast2 under OpenBSD. It neither
> worked for me on OBSD 3.0 nor my old 2.8, but the new 3.1 appears to
> come with more icecast-friendly (p)threads.
Good to know :)
> Compiling libshout failed because src/mp3.c included
Hello,
Attached is a full analysis to accompany the earlier disclosed remote root/shell
exploit for the Icecast mp3 streaming server. It also details some other
exploitable bugs besides the one that is exploited with the supplied exploit
and thus I believe has posting value. This write-up was mainly meant to
aid the icecast developers in locating and eliminating the exact problems,
but I can imagine it would be of some value to other interested parties
as well.
ltr,
diz - #temp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: icecast.txt
Type: application/octet-stream
Size: 4808 bytes
Desc: icecast.txt
URL: