search for: myme

Displaying 6 results from an estimated 6 matches for "myme".

Did you mean: mime
2002 Aug 20
1
Running median
I have a Date x Stock (223 x 520) matrix of "trading volume". I can calculate a 5-day (past) average in about 1 second using: R> apply(vol, 1, filter, filter=c(0, rep(1/5,5)), sides=1) I would like to do the same with a 5-day median, e.g.: R> mymed <- function(x, n=5) { R> r <- rep(NA, length(x)) R> for (i in (n+1):length(x)) r[i] <- median(x[i-(1:n)]) R> return(r) R> } R> apply(vol, 1, mymed) only faster (the above takes 65 seconds). Is there already a function (or some C code) to do this? Any clever way to...
2004 Aug 06
3
icecast2 ogg vorbis client request headers
...00 OK\r\n" "Content-Type: audio/x-mpegurl\r\n\r\n" "http://%s:%d%s\r\n", host, port, sourceuri ); i cant be sure tho if its being sent at all, what is the myme type for ogg vorbis? <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 1:40 AM Subject: Re: [icecast-...
2004 Aug 06
4
icecast2 ogg vorbis client request headers
...host, > > port, > > sourceuri > > That looks like the auto-generated .M3U stuff there - that is > audio/mpegurl. The MP3 itself should be audio/mpeg. > > > i cant be sure tho if its being sent at all, what is the myme type for ogg > > vorbis? > > the Ogg Vorbis MIME type is application/ogg. This may or may not help you, > depending on how smart Winamp is nowadays. Certainly time was that Winamp > relied on the .ogg extension to know that it was ogg vorbis, and in truth > this may be your p...
2004 Aug 06
0
icecast2 ogg vorbis client request headers
...tp://%s:%d%s\r\n", > host, > port, > sourceuri That looks like the auto-generated .M3U stuff there - that is audio/mpegurl. The MP3 itself should be audio/mpeg. > i cant be sure tho if its being sent at all, what is the myme type for ogg > vorbis? the Ogg Vorbis MIME type is application/ogg. This may or may not help you, depending on how smart Winamp is nowadays. Certainly time was that Winamp relied on the .ogg extension to know that it was ogg vorbis, and in truth this may be your problem. Maybe you'll hav...
2004 Aug 06
0
icecast2 ogg vorbis client request headers
...; port, > > > sourceuri > > > > That looks like the auto-generated .M3U stuff there - that is > > audio/mpegurl. The MP3 itself should be audio/mpeg. > > > > > i cant be sure tho if its being sent at all, what is the myme type for > ogg > > > vorbis? > > > > the Ogg Vorbis MIME type is application/ogg. This may or may not help > you, > > depending on how smart Winamp is nowadays. Certainly time was that Winamp > > relied on the .ogg extension to know that it was ogg vorbis, a...
2004 Aug 06
5
icecast2 ogg vorbis client request headers
That seems it may work, however the server adds the client (php proxy script in this case) and does not disconnect it, however winamp does not recieve any audio, just sits there saying BUFFERING I know its related to the amount of bytes read into the header or something in that area as my tests with shoutcast nsv resulted in the same fashion. the main goal of this is for subscription