similar to: icecast2 ogg vorbis client request headers

Displaying 20 results from an estimated 4000 matches similar to: "icecast2 ogg vorbis client request headers"

2004 Aug 06
3
icecast2 ogg vorbis client request headers
> You must have some other, unrelated, problem, presumably elsewhere in your > code. this is what i have, and does work with mp3, but ogg does not want to work. im testing with winamp, you think that may be the issue? <p><p>fwrite($fp,"GET /mymp3 HTTP/1.1\nUser-Agent:$HTTP_USER_AGENT\n\n"); for ($i=0; $i<120; $i++) { if (feof($sp)) break; $str.=fread($sp,4096);
2004 Aug 06
2
icecast2 ogg vorbis client request headers
This may be of help, im tailing the error log file and im getting these errors [2004-04-01 19:14:35] DBUG source/source_main Client added [2004-04-01 19:14:38] DBUG source/source_main Client had unrecoverable error with new data, probably due to client disconnection [2004-04-01 19:14:38] DBUG source/source_main Client removed <p><p>Dave St John Mediacast1 Administration Need
2004 Aug 06
0
icecast2 ogg vorbis client request headers
On Friday 02 April 2004 09:28, Dave St John wrote: > Can anyone shed some light as to what icecast2 accepts as a client request > methods for ogg vorbis, apparently there is a difference bettween the way > icecast2 handles mp3 and ogg vorbis. > > php example for mp3 that works > fwrite($fp,"GET /mymp3 HTTP/1.1\nUser-Agent:$HTTP_USER_AGENT\n\n"); > > php example
2004 Aug 06
5
Ogg response headers
Ok i got a few questions when a client connects (winamp) what are the incoming headers icecast looks for to signify what type(ogg or mp3) of stream the client is requesting? example (for shoutcast winamp sends icy-metadata:1) shoutcast server then recognizes its a player capable of streaming media so it sends the icy-metaint:8192 to winamp, along with a slew of other icy headers. o here is my
2004 Aug 06
3
Strange change in icecast kh14 for IP logging
> What I did notice is that the date field is not first, even though it's > date ordered. I personally didn't like that, so I just moved the date > field. opinions ? Please don't change the ordering of the fields. It's quite deliberately ordered for compatibility with the Apache Common Log Format. (hmm... or is it the Combined Log Format? I forget...) Mike --- >8
2004 Aug 06
3
Ogg response headers
> p.s. Please don't ever send HTML mail to this or any other mailing list. roger that, outlook has its way of deciding for you sometimes :/ <p>> URL ends with ".ogg". If your script ends with ".php" (as it probably does), Since i got the mp3 part to work, myabe ill try adding .ogg to be parsed by php in the apache config, since it the winamp request ends up
2004 Aug 06
3
icecast2 ogg vorbis client request headers
Well the code itself is what i took from tom peppers sc proxy script and incorperated our own auth system for icecast2 i know i got it close with ogg and it seems to be when i tweak the $str.=fread($sp,4096); bit amount, i get different results, 4096 works fine for mp3 on icecast2 and shoutcast, but im assuimg maybe there is more or less to read from the ogg headers?? if so what would be the
2013 Feb 27
2
how to talk with doveadmin unix socket
Hello, I would like to get mailbox quota by doveadm unix socket (/var/run/dovecor/doveadm-server). I get from strace syntax of comunication: write(9, "VERSION\t1\t0\nUSER\t1\tpiotr.rotter at active24.pl\tservice=doveadm\n", 60) = 60 read(9, "VERSION\t1\t1\nSPID\t20805\n", 8192) = 23 read(9, "USER\t1\tpiotr.rotter at active24.pl\temail=piotr.rotter at
2004 Aug 06
0
icecast2 ogg vorbis client request headers
On Friday 02 April 2004 11:04, Dave St John wrote: > > You must have some other, unrelated, problem, presumably elsewhere in > > your code. > > this is what i have, and does work with mp3, but ogg does not want to work. > im testing with winamp, you think that may be the issue? > > > > fwrite($fp,"GET /mymp3 HTTP/1.1\nUser-Agent:$HTTP_USER_AGENT\n\n");
2005 Jan 13
4
Manager API !!!!!!!!!
Hello all Has anyone had any success with the Manager API ? I am trying to check an extension status without too much luck I have the following <?php $fp = fsockopen("127.0.0.1", 5038, $errno, $errstr, 30); if (!$fp) { echo "$errstr ($errno)<br />\n"; } else { $out = "Action: Login\r\n"; $out .=
2004 Aug 06
1
Ogg response headers
> clear as mud ? Thick in it LOL Ok since you discussed how clients handle mp3, what about ogg vorbis? winamp is just supposed to recognize the .ogg extension? like i said before the mp3 works with that code, but ogg mounts just sit there, doing nothing. <p>Dave St John Mediacast1 Administration ----- Original Message ----- From: "oddsock" <oddsock@oddsock.org> To:
2004 Aug 06
0
Ogg response headers
icecast doesn't look at the headers at all, they look only at the mountpoint...so in your case, it will look up /my_mp3 or /example.ogg and serve that stream. Icecast WILL send a Content-type in the response headers to the client, but most media players don't actually determine stream types off the Content-type (I think the defunct winamp3 did), but rather by file extension..So in
2006 Apr 07
1
[FYI] issues with integration testing
I was working on an integration test to test login/logout functionality and came across an issue that took me a bit to figure out. In one of my controllers, I have to test the request.env["HTTP_USER_AGENT"] value as a portion of the app will be access by Windows CE hand-helds. in the controllers index action i had the lines logger.info "user agent: " +
2015 Mar 14
2
range query for terms
first, thank you,xapian! then I'd like to ask if it is possible to do a range query on terms(like the range query on values), or if it is just a wildcard(right truncation) match. the case is searching ip address bettween ?10.10.0.0? and ?10.10.255.255? the user want : 1. query "10.10.10.10" < ip < "10.10.10.12" gives "10.10.10.11" 2. query
2008 Sep 30
4
Using the response object in stories
I have this statement in the layout of my application (using haml) - if request.env["HTTP_USER_AGENT"].include?("MSIE") = stylesheet_link_tag ''blueprint/ie.css'' = stylesheet_link_tag ''confirm_ie.css'' The problem is that request.env["HTTP_USER_AGENT"] is nil when I go to some page in the features I write with cucumber and webrat
2007 Oct 16
5
RailsStory - lessons learned
After trying RailsStory for a few days, I have learned: 1. Rails testing support does not serve up static pages 2. RailsStory masks errors generated by the app under test 3. The masked errors are available in log/test 4. I should read log/test more often See http://pastie.caboo.se/107876 for an example for points 2 and 3 The welcome controller fails when the HTTP_USER_AGENT is missing.
2023 Mar 27
1
doveadm expunge unnecessarily tries to access TLS key
I have just upgraded my Debian Buster (Dovecot 2.3.4, I think it was) to Bullseye (Dovecot 2.3.13). The Dovecot server works fine, which of course is the really important thing. But I have a cron job that cleans up all old mail from the mailbox that I use for my mobile phone by running "doveadm expunge" every night. That worked fine in 2.3.4, but now it fails: > jdmobile at
2023 Mar 27
1
doveadm expunge unnecessarily tries to access TLS key
> On 27/03/2023 16:42 EEST Jesper Dybdal <jd-dovecot at dybdal.dk> wrote: > > > I have just upgraded my Debian Buster (Dovecot 2.3.4, I think it was) to > Bullseye (Dovecot 2.3.13). > > The Dovecot server works fine, which of course is the really important > thing. > > But I have a cron job that cleans up all old mail from the mailbox that > I use for
2006 Mar 21
4
Determining Browser?
Is there a way I can read the user agent or something similar to determine whether the person is using IE, Mozilla/Netscape, Opera, Safari, etc? I want to dynamically output the CSS to the browser, but I''d like to change certain things (in this case the widths of some divs since IE adds borders and padding size to the total size of a div unlike firefox). Thanks, - Brent
2004 Aug 06
3
[Fwd: Icecast2 and ices]
I got this offlist from someone on the list. This is abuse and should be punished. This didn't anwser my post and was directed to me off-list without invitation. All it was was a promotion. -----Forwarded Message----- From: Dave St John <groups@mediacast1.com> To: drew@drewb.com Subject: Icecast2 and ices Date: 22 Aug 2003 19:22:17 -0600 Hello Drew, saw your post on the xiph list