Displaying 20 results from an estimated 41 matches for "max_listen".
Did you mean:
maxlisten
2004 Aug 06
0
[PATCH] Add per-listener and per-mount connection time limits.
...gt;name, "queue-size") == 0) {
tmp = (char *)xmlNodeListGetString(doc, node->xmlChildrenNode, 1);
configuration->queue_size_limit = atoi(tmp);
***************
*** 452,457 ****
--- 458,464 ----
configuration->mounts = mount;
mount->max_listeners = -1;
+ mount->max_listener_time = 0;
mount->next = NULL;
do {
***************
*** 481,486 ****
--- 488,498 ----
else if (strcmp(node->name, "max-listeners") == 0) {
tmp = (char *)xmlNodeListGetString(doc, node->xmlChildrenNode, 1)...
2004 Aug 06
2
Stream metadata settings
On Mon, 2003-12-01 at 08:28, Melanie wrote:
>
> diff -b -B -r -u -P --exclude-from=ignore ../icecast/src/source.c
> ./src/source.c
> --- ../icecast/src/source.c Fri Nov 14 17:51:59 2003
> +++ ./src/source.c Mon Dec 1 09:14:34 2003
> @@ -139,7 +192,6 @@
> #endif
>
> free(source->mount);
> - free(source->fallback_mount);
>
2005 Aug 21
3
Icecast 2.3 RC1 Announcement
Ok folks, we are getting ready for version 2.3 of icecast and have built an
RC1 distribution. We encourage everyone to try out this new release and
provide us feedback. Please report all bugs to http://bugs.xiph.org
Here are the details :
Source Distribution:
http://downloads.xiph.org/releases/icecast/icecast-2.3.0.rc1.tar.gz
Source RPM:
2005 Aug 21
3
Icecast 2.3 RC1 Announcement
Ok folks, we are getting ready for version 2.3 of icecast and have built an
RC1 distribution. We encourage everyone to try out this new release and
provide us feedback. Please report all bugs to http://bugs.xiph.org
Here are the details :
Source Distribution:
http://downloads.xiph.org/releases/icecast/icecast-2.3.0.rc1.tar.gz
Source RPM:
2005 Jul 13
1
IceCast 2.2 MP3 stream and Real Player noise
...e
(Unspecified name)
[2005-07-13 23:49:36] DBUG stats/stats.c new node server_description
(Unspecified description)
[2005-07-13 23:49:36] DBUG stats/stats.c new node genre (various)
[2005-07-13 23:49:36] DBUG stats/stats.c new node on_demand (1)
[2005-07-13 23:49:36] DBUG stats/stats.c new node max_listeners (200)
[2005-07-13 23:49:36] DBUG stats/stats.c new node public (0)
[2005-07-13 23:49:36] DBUG stats/stats.c new node server_name
(Unspecified name)
[2005-07-13 23:49:36] DBUG stats/stats.c new node server_description
(Unspecified description)
[2005-07-13 23:49:36] DBUG stats/stats.c new node...
2019 Jul 11
2
Need help with streaming to Icecast
...latform my stream is being considered as an audio
stream?? and I am unable to play it
I am with no ideas on how to solve this. Am I doing something wrong? Please
take a look on the code bellow
Thanks in advance
genre various
listener_peak 0
listeners 0
listenurl http://192.168.11.61:8000/gcs.ogg
max_listeners unlimited
public 0
server_description Unspecified description
server_name Unspecified name
server_type audio/mpeg
slow_listeners 0
source_ip 192.168.11.61
stream_start Thu, 11 Jul 2019 15:56:46 +0100
stream_start_iso8601 2019-07-11T15:56:46+0100
total_bytes_read 877800
total_bytes_sent 0
user_ag...
2012 Dec 11
2
Adding additional mount info to xsl stylesheet
...t;mount, "listeners", "%lu",
source->listeners);
stats_event_args (source->mount, "listener_peak", "%lu",
source->peak_listeners);
stats_event_time (source->mount, "stream_start");
+ stats_event_args (source->mount, "max_listener_duration", "%lu",
source->max_listener_duration);
+
+ const char * user_agent = httpp_getvar (source->client->parser,
"user-agent");
+ stats_event_args (source->mount, "user-agent", "%s", user_agent);
DEBUG0("Source creati...
2020 Mar 26
2
making sense of the stats
...0
source_total_connections
1
sources
1
stats
0
stats_connections
0
Mountpoint /live.mp3
listener_peak
6
listeners
5
max_listeners
unlimited
After more people started to connect, the admin #s got even more whacky.
Then, I have the max clients set to 25, yet the mountpoint says
'unlimited' listeners. Why the difference here? Aren't listeners also
clients?
<limits>
<clients>25&l...
2004 Aug 06
2
[patch] time stamps in dump file names
...Get the current time. */
+ curtime = time (NULL);
+
+ /* Convert it to local time representation. */
+ loctime = localtime (&curtime);
+
source_t *src;
src = (source_t *)malloc(sizeof(source_t));
@@ -76,7 +86,8 @@
src->fallback_mount = strdup (mountinfo->fallback_mount);
src->max_listeners = mountinfo->max_listeners;
if (mountinfo->dumpfile != NULL)
- src->dumpfilename = strdup (mountinfo->dumpfile);
+ strftime (buffer, PATH_MAX, mountinfo->dumpfile, loctime);
+ src->dumpfilename = strdup (buffer);
}
if(src->dumpfilename != NU...
2004 Aug 06
0
Stream metadata settings
...14:49:52 2003
+++ ./src/source.c Mon Dec 1 14:50:56 2003
@@ -72,7 +72,7 @@
src->yp_public = 0;
if(mountinfo != NULL) {
- src->fallback_mount = mountinfo->fallback_mount;
+ src->fallback_mount = (char *)strdup(mountinfo->fallback_mount);
src->max_listeners = mountinfo->max_listeners;
src->dumpfilename = mountinfo->dumpfile;
}
Melanie
<p>On 2003.12.01 14:41 Karl Heyes wrote:
> On Mon, 2003-12-01 at 08:28, Melanie wrote:
>
> >
> > diff -b -B -r -u -P --exclude-from=ignore ../icecast/src/source.c
&g...
2004 Aug 06
1
Stream metadata settings
...Mon Dec 1 14:50:56 2003
> @@ -72,7 +72,7 @@
> src->yp_public = 0;
>
> if(mountinfo != NULL) {
> - src->fallback_mount = mountinfo->fallback_mount;
> + src->fallback_mount = (char *)strdup(mountinfo->fallback_mount);
> src->max_listeners = mountinfo->max_listeners;
> src->dumpfilename = mountinfo->dumpfile;
> }
2 things...
- you missed dumpfile which also has the same issue :)
- the config lock really needs to be taken. You don't want the
mountinfo details to disappear which it could do if...
2004 Aug 06
2
[patch] time stamps in dump file names
...Get the current time. */
+ curtime = time (NULL);
+
+ /* Convert it to local time representation. */
+ loctime = localtime (&curtime);
+
source_t *src;
src = (source_t *)malloc(sizeof(source_t));
@@ -76,7 +86,8 @@
src->fallback_mount = strdup (mountinfo->fallback_mount);
src->max_listeners = mountinfo->max_listeners;
if (mountinfo->dumpfile != NULL)
- src->dumpfilename = strdup (mountinfo->dumpfile);
+ strftime (buffer, PATH_MAX, mountinfo->dumpfile, loctime);
+ src->dumpfilename = strdup (buffer);
}
if(src->dumpfilename != NU...
2019 Jul 11
1
Need help with streaming to Icecast
...o ideas on how to solve this. Am I doing something wrong?
> > Please
> > take a look on the code bellow
> >
> > Thanks in advance
> >
> > genre various
> > listener_peak 0
> > listeners 0
> > listenurl http://192.168.11.61:8000/gcs.ogg
> > max_listeners unlimited
> > public 0
> > server_description Unspecified description
> > server_name Unspecified name
> > server_type audio/mpeg
> > slow_listeners 0
> > source_ip 192.168.11.61
> > stream_start Thu, 11 Jul 2019 15:56:46 +0100
> > stream_start_iso...
2020 Mar 27
2
making sense of the stats
...>> source_total_connections
>> 1
>>
>> sources
>> 1
>>
>> stats
>> 0
>>
>> stats_connections
>> 0
>>
>> Mountpoint /live.mp3
>> listener_peak
>> 6
>>
>> listeners
>> 5
>>
>> max_listeners
>> unlimited
>>
>> After more people started to connect, the admin #s got even more whacky.
>>
>> Then, I have the max clients set to 25, yet the mountpoint says 'unlimited' listeners. Why the difference here? Aren't listeners also clients?
>&g...
2014 Oct 23
2
Icecast stats.xml
On 2014-10-23 09:02, "Thomas B. R?cker" wrote:
> Thanks for taking the time to report this.
>
> On 10/23/2014 06:38 AM, Roger H?gensen wrote:
>> Consider this a Ticket for Icecast 2.4
>>
>> ********************************************************************************
>> If you look at
>> {{{
>> admin/stats.xml
>> }}}
>>
>>
2004 Aug 06
2
new features request
...to rate-limit my icecast2
then clients will start to get their stream "slower" then the actual
stream bitrate which is completly wrong! We are not talking about file
transfers here but about streams. Streams must be served at their constant
bitrate (at least :)). What I want (because max_listeners isnt enough when
you have variable bit rate streams) is to refuse clients when current kbps
its over some configured limit.
> That way icecast2 doesnt have to take up extra resources to handle
> bandwidth limitations.
Besides my initial ideea of adding a general lock into net/sock_...
2005 Feb 11
3
Updating MetaData at the Relay
Now that 2.2.0 is out, we can update metadata on-the-fly. At
pulverradio.com we are working on an injector that takes the song info
from our broadcast automation software and dumps it in (thanks guys for
the help). I realize that we can inject the song info like so:
http://server.ip:port/admin/metadata?mount=/
mountpoint&mode=updinfo&song=ACDC+Back+In+Black
.... but are there
2019 Aug 05
0
need help on script
...-token"/>
<option name="header_prefix" value="ClientHeader."/>
</authentication>
-->
</mount>
<source mount="/mystream">
<listener_peak>1</listener_peak>
<listeners>1</listeners>
<max_listeners>unlimited</max_listeners>
<public>1</public>
<quality>10.0</quality>
<samplerate>44100</samplerate>
<server_description>RAKFM 1035</server_description>
<server_name>RAKFM Live Stream</server_name>
<slow_listeners>0</sl...
2006 Mar 25
0
YP not getting server info after upgrade
...] DBUG stats/modify_node_event update node
server_type (application/ogg)
[2006-03-19 00:00:40] DBUG stats/modify_node_event update node subtype
(vorbis)
[2006-03-19 00:00:40] DBUG stats/modify_node_event update node
on_demand (1)
[2006-03-19 00:00:40] DBUG stats/modify_node_event update node
max_listeners (unlimited)
[2006-03-19 00:01:26] DBUG yp/send_to_yp YP touch at
http://dir.xiph.org/cgi-bin/yp-cgi succeeded
2008 Feb 01
1
can not stream the video using eztream
...Clients | Move MountPoints | Update Metadata | Kill Source
audio_bitrate 48000
audio_channels 2
audio_info bitrate=128;channels=2;samplerate=44100
audio_samplerate 44100
bitrate 128
channels 2
genre RockNRoll
ice-bitrate 48
listener_peak 3
listeners 3
listenurl http://localhost:8000/different.ogg
max_listeners unlimited
public 1
samplerate 44100
server_description This is a stream description
server_name My Stream
server_type application/ogg
server_url http://localhost
slow_listeners 0
source_ip 127.0.0.1
stream_start Thu, 31 Jan 2008 18:07:59 -0500
subtype Vorbis
total_bytes_read 708181570
total_byte...