Displaying 6 results from an estimated 6 matches for "my_mp3".
Did you mean:
my_app
2004 Aug 06
5
Ogg response headers
...m 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 dilema
example php code
fwrite($sp,"GET /my_mp3 HTTP/1.0\nUser-Agent:Secret stuff alpha\nicy-metadata:1\n\n");//works with winamp when requested via php script
but
fwrite($sp,"GET /example.ogg HTTP/1.0\nUser-Agent:Secret stuff alpha\n\n"); //will not work in winamp when requested via php script
diff highlighted in blue.
any idea...
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 the case of winamp, it wou...
2004 Aug 06
1
Ogg response headers
...dsock" <oddsock@oddsock.org>
To: <icecast-dev@xiph.org>
Sent: Thursday, December 04, 2003 8:00 AM
Subject: Re: [icecast-dev] Ogg response headers
<p>> 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 the case o...
2004 Aug 06
0
Ogg response headers
...t; example
> (for shoutcast winamp sends icy-metadata:1)
Winamp sends that to mean "I want mp3 inline metadata if you support it", but
this does not imply anything about the requested stream format.
<p>> so here is my dilema
> example php code
> fwrite($sp,"GET /my_mp3 HTTP/1.0\nUser-Agent:Secret stuff
> alpha\nicy-metadata:1\n\n");//works with winamp when requested via php
> script but
> fwrite($sp,"GET /example.ogg HTTP/1.0\nUser-Agent:Secret stuff alpha\n\n");
> //will not work in winamp when requested via php script
Winamp is buggy...
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
...st winamp sends icy-metadata:1)
>
> Winamp sends that to mean "I want mp3 inline metadata if you support it",
but
> this does not imply anything about the requested stream format.
>
>
> > so here is my dilema
> > example php code
> > fwrite($sp,"GET /my_mp3 HTTP/1.0\nUser-Agent:Secret stuff
> > alpha\nicy-metadata:1\n\n");//works with winamp when requested via php
> > script but
> > fwrite($sp,"GET /example.ogg HTTP/1.0\nUser-Agent:Secret stuff
alpha\n\n");
> > //will not work in winamp when requested via php scr...