Displaying 20 results from an estimated 1000 matches similar to: "icecast 2 compatibility with older clients"
2004 Aug 06
0
icecast 2 compatibility with older clients
On Wednesday, 02 July 2003 at 19:19, Brendan Cully wrote:
> I've attached a small patch against icecast 2 which converts ice-
> headers to icy- headers for clients that include icy- headers in their
> request. This allows a few clients (notably xmms) to pick up stream
> info they otherwise miss.
Per Jack's suggestion, here's a different version that forces icy mode
when
2004 Aug 06
5
shoutcast to icecast2 issues
relaying a shoutcast stream via icecast2 is pretty much unlistenable --
it constantly stutters.
for example,
shoutcast relay -- http://205.188.234.1:8030/listen.pls
icecast2 relay -- http://liveradio.indymedia.org:8001/sf-hifi.mp3.m3u
--mark
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To unsubscribe from this list, send a
2004 Aug 06
5
Missing headers in Icecast2
Hi Karl,
Thanks for your help,
About the "Connection:" header, you are right, it's:
"Connection: close" and NOT "Connection: keep-alive". The protocol when the
SERVER sends the data is http 1.0. It's http 1.1 when the browser requests
the data.
I don't understand the "Content-Length: 54000000" header either. Also I
noticed the flash player on
2005 Jun 27
3
AW: IE/FLASH/ICECAST
On Mon, 2005-06-27 at 19:33, Michael Kamleitner wrote:
> hi,
>
> icecast 2.2.0 has to be patched slightly to work with flash-players using
> the sound-object - cant find the exact link to this, maybe one of the
> developers can explain? I just added 4 lines at the end of
> format_mp3_send_headers() in format_mp3.c:
>
> sock_write(client->con->sock,
2004 Aug 06
3
net/sock.c question
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi
I have started to add bandwidth <limit> option to icecast. My ideea is to
compute the current bandwidth by estimation on each sock_write*() call.
Something like this:
1. initially we set kbps = 0, kbps_time = now and kbps_bytes = 0
2. after some time, a sock_write*() function is called which in turn calls
sock_kbps_update(nobytes);
2004 Aug 06
1
Patch to add User-Agent to libshout
Just a nifty thing to have for icecast server access logs... diff
against CVS HEAD is attached.
<p>
Index: configure.in
===================================================================
RCS file: /usr/local/cvsroot/libshout/configure.in,v
retrieving revision 1.65
diff -u -r1.65 configure.in
--- configure.in 13 Jul 2003 16:36:37 -0000 1.65
+++ configure.in 21 Jul 2003 04:20:22 -0000
@@
2004 Aug 06
1
minor error in http response
there is a "copy/paste" error in src/client.c, line 55 (v 2.0.0). it also exists in cvs.
in client_send_400, it should return http code 400, not 404.
i love this project and like to participate.
--- client.c.orig 2004-04-19 17:35:26.000000000 +0800
+++ client.c 2004-04-19 17:36:37.000000000 +0800
@@ -54,11 +54,11 @@
void client_send_400(client_t *client, char
2007 Jun 24
1
There was a problem by the use of snow.
problem of the very large memory require by the Sign extension.
--- R-2.5.0.orig/src/main/serialize.c 2007-03-27 01:42:08.000000000 +0900
+++ R-2.5.0/src/main/serialize.c 2007-06-25 00:48:58.000000000 +0900
@@ -1866,7 +1866,7 @@
static void resize_buffer(membuf_t mb, int needed)
{
- int newsize = 2 * needed;
+ size_t newsize = 2 * needed;
mb->buf = realloc(mb->buf,
2005 Jun 27
3
IE/FLASH/ICECAST
Hello,
I've created a macromedia flash player in order to play icecast mp3 streaming.
Icecast is configued on the port 8000 and It's ok with winamp.
In my flash movie, I've used loadSound("<streaming>",true) on a Sound object.
It's ok on Mozilla based browsers but
some user don't have sound on Internet Explorer.
D't understand? Is there an issue?
Thx
2004 Aug 06
3
icecast2 ogg vorbis client request headers
I have tried that, but not sure if i am doing that right.
in connection.c starting line 847 i believe, it sends this
bytes = sock_write(client->con->sock,
"HTTP/1.0 200 OK\r\n"
"Content-Type: audio/x-mpegurl\r\n\r\n"
"http://%s:%d%s\r\n",
host,
port,
2004 Aug 06
4
Missing headers in Icecast2
On Saturday 06 December 2003 17:12, Macsym wrote:
> Hi Karl,
>
> I just checked in Icecast1 source, the line:
>
> if (client_wants_content_length (con))
> sock_write (con->sock, "Cache-Control: no-cache\r\nPragma:
> no-cache\r\nConnection: close\r\nContent-Length: 54000000\r\n");
>
>
> is located in "client.c". Shouldn't I add this line
1999 Jul 16
1
R-0.64.2 ssize_t not defined in src/unix/sock.h
I though I should let you all know of this:
Trying to build R-0.62.2 on a SunOS xxxx 4.1.4 2 sun4m machine
using gcc (gcc version egcs-2.91.57 19980901 (egcs-1.1 release)):
gnumake[2]: Entering directory `/tmp_mnt/xxxx/src/R-0.64.2/src/unix'
gcc -g -O2 -I../include -I../../src/include -c Rsock.c -o Rsock.o
In file included from Rsock.c:8:
sock.h:21: parse error before `Sock_read'
2006 Aug 17
2
Creating function name from variables..
I have a situation where I have a number of fields and a rating for the
field. So, in a DRY way, this works fine:
<%= [''abc'', ''def'', ''klm''].each do |e| %>
<tr><td><%= @result[e] %></td>
<td> <%= @result[e+''rating''] %></td>
</tr>
<% end %>
Now, I
2005 Jun 27
0
AW: IE/FLASH/ICECAST
hi,
icecast 2.2.0 has to be patched slightly to work with flash-players using
the sound-object - cant find the exact link to this, maybe one of the
developers can explain? I just added 4 lines at the end of
format_mp3_send_headers() in format_mp3.c:
sock_write(client->con->sock, "Cache-Control: no-cache\r\n");
sock_write(client->con->sock, "Pragma: no-cache\r\n");
2005 Jun 28
0
AW: AW: IE/FLASH/ICECAST
> On Mon, 2005-06-27 at 19:33, Michael Kamleitner wrote:
> > hi,
> >
> > icecast 2.2.0 has to be patched slightly to work with
> flash-players using
> > the sound-object - cant find the exact link to this, maybe
> one of the
> > developers can explain? I just added 4 lines at the end of
> > format_mp3_send_headers() in format_mp3.c:
> >
>
2005 Jun 20
1
Flash Player
Is there any flash based players out that can be embedded into a webpage and stream a icecast feed?
-=-=-=-=-=-=-=Ottawa Valley Weather-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Weather @ 5:50pm - Temp: 31.1?C - Humidity 23% - Wind: W @ 0 km/h
Baro: 1001kPa Falling - Vis: 24km - Sky: Few Clouds - Weather: ---
Hourly Rain: 0.00mm - Daily Rain: 0.00mm - Total Rain(May 28th): 1.00mm
=-=-=-=
2004 Aug 06
4
icecast2 ogg vorbis client request headers
Didnt try the application/ogg ogg extension yet, ill give that a
shot.
<p>Dave St John
Mediacast1 Administration
Need Support ?
http://mediacast1.com/helpdesk
----- Original Message -----
From: "Geoff Shang" <gshang@pacific.net.au>
To: <icecast-dev@xiph.org>
Sent: Friday, April 02, 2004 5:28 AM
Subject: Re: [icecast-dev] icecast2 ogg vorbis client request
2003 Nov 24
1
[PATCH] library functions
Hi,
Here are some new library functions for klibc. Some of them are
required for udev, which currently has a klibc_fixups.c file that
implements these functions.
mh
--
Martin Hicks Wild Open Source Inc.
mort@wildopensource.com 613-266-2296
# This is a BitKeeper generated patch for the following project:
# Project Name: The kernel C library
# This patch format is intended
2014 Aug 28
1
RDNIS with tel: vs. sip: header
Has anyone had success patching chan_sip.c so that Asterisk will recognize
the tel: header for RDNIS information?
exten = get_in_brackets(tmp);
if (!strncasecmp(exten, "sip:", 4)) {
exten += 4;
} else if (!strncasecmp(exten, "sips:", 5)) {
exten += 5;
} else {
ast_log(LOG_WARNING, "Huh? Not an
2004 Aug 06
2
new features request
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Fri, 13 Feb 2004, Dave St John wrote:
> > > > Another nice feature to add would be a "bandwidth" limit (so just a
> new
> > > > <limit> type entry).
> If you are running icecast2 on linux you can handle bandwidth limitations
> using QoS
> more specificly iproute2.
You mistunderstood me. No, I