Displaying 20 results from an estimated 48 matches for "mpegurl".
2004 Aug 06
2
gen-mpegurl.m3u source/making a clean weblink to broadcast
Hi guys. I've been running icecast for awhile, and just
upgraded to the latest version. Everything works fine,
nice work.
Here's the deal, I'm still not sure how to make a clean
link to my broadcast. On the icecast.org site, it calls
a cgi-bin file called 'gen-mpegurl.m3u.' This always
stars up my broadcast nicely.
Is there anyway to get the source code to gen-mpegurl.m3u,
so I could do this from my website without needing to
use an offsite link. Or what is needed to launch a
streaming mp3 file from, you know, realaudio, wmp and
other players out there....
2004 Aug 06
0
gen-mpegurl.m3u source/making a clean weblink to broadcast
...I've been running icecast for awhile, and just
> upgraded to the latest version. Everything works fine,
> nice work.
>
> Here's the deal, I'm still not sure how to make a clean
> link to my broadcast. On the icecast.org site, it calls
> a cgi-bin file called 'gen-mpegurl.m3u.' This always
> stars up my broadcast nicely.
>
> Is there anyway to get the source code to gen-mpegurl.m3u,
> so I could do this from my website without needing to
> use an offsite link. Or what is needed to launch a
> streaming mp3 file from, you know, realaudio, wmp...
2004 Aug 06
0
gen-mpegurl.m3u source/making a clean weblink to broadcast
On Fri, Mar 29, 2002 at 06:52:39PM -0800, icecast@chile.junglevision.com wrote:
> Thanks guys, this is exactly what I was looking for. Now, all
> I have to do is figure out how to start icecast and liveice
> cleanly when the machine cycles power.
>
> I tried just naively sticking
>
> /usr/local/icecast/bin/icecast &
> /usr/local/icecast/bin/liveice &
>
>
2004 Aug 06
2
gen-mpegurl.m3u source/making a clean weblink to broadcast
Thanks guys, this is exactly what I was looking for. Now, all
I have to do is figure out how to start icecast and liveice
cleanly when the machine cycles power.
I tried just naively sticking
/usr/local/icecast/bin/icecast &
/usr/local/icecast/bin/liveice &
into rc.local, but something weird happens. It just loops
on a message 'you can run but you can't hide' over and
over
2005 Jul 15
1
Adding streaming MP3 files to websites
...th an embedded QuickTime player in it which just hangs. this
also hangs for me using Mozilla/Win2K.
i've made sure that /etc/mime.types on the Icecast server contains the
following and i've restarted Apache/Icecast:
audio/MP3 .mp3
audio/m3u .mpu
audio/x-mpeg .mp3
audio/x-mpegurl .m3u
audio/x-mpegurl .mp3url
anything obvious that i've overlooked or should be doing?
thanks in advance.
chip
2005 Nov 24
1
XSL Content-type
...r. That is just simple remake of status.xsl.
But I got stuck. When I request it via
http://serever/list.xsl - my winamp doesnot accept the m3u generated file.
I began to research. The main problem is "Content-type" which gives me the
icecast. It gives me text\html and I need "audio/x-mpegurl".
Diffrent kind of dances with xsl
<xsl:output standalone="yes" omit-xml-declaration="no" method="text" media-type="audio/x-mpegurl"/>
do not help...
the resulting is "text\html" :(
What can I do?
--
Kuzik V.Andrew (www)kuzik.org.ua,(...
2001 Jan 23
1
Re: HTTP Streaming
Okay, this is similar to how the mp3 streaming was.
The question is then, what is the MIME type for the
playlist itself? For mp3s, it used to be
audio/x-mpegurl??
Thanks,
Matt
>You need to create a playlist containing the URL of
the Vorbis file. Then
>the browser will just download the playlist and hand
it off to your player.
>Which player are you using? Not all of them have
>HTTP
>streaming support yet.
>I know the HTTP streaming in...
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,
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 Administrat...
2004 Aug 06
4
icecast2 ogg vorbis client request headers
...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,
> > sourceuri
>
> That looks like the auto-generated .M3U stuff there - that is
> audio/mpegurl. The MP3 itself sho...
2004 Aug 06
2
Problems streaming just one file, yet /default works fine.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
We are needing to use icecast to stream a single mp3 _from_the_beginning_ of the file.
Using Icecast and Shout, everything works fine, the problem with that is that when you conenct to /default you start listening at whatever point shout is currently playing at.
This is not satisfactory at all, the stream must start at the beginning of the
2011 Feb 28
2
Generation of M3U and XSPF
...guration file and to apply a patch
on the fserve.c source file
Here is the code to change :
* config = config_get_config();
snprintf (httpclient->refbuf->data, BUFSIZE,
"HTTP/1.0 200 OK\r\n"
"Content-Type: audio/x-mpegurl\r\n\r\n"
"http://%s:%d%s\r\n",
config->hostname, config->port,
sourceuri
);
config_release_config();*
Or do you know an alternative to hide port to users..
Thanks
-------------------...
2004 Aug 06
1
Tweaking Questions.
...stead of opening up the
> > player (this happens at http://www.xxx.com:8000).
>
> Instead of having link to http://www.xxx.com:8000, you need to have a link to
> a file on the webserver such as: http://www.xxx.com/playlist.m3u
Then in Apache have an AddType directive
audio/x-mpegurl .m3u
which have Apache send out the proper mime type.
>
> In the playlist.m3u file, place the text http://www.xxx.com:8000
>
> > 2- How can you create a playlist? Currently it
> > just plays the mp3's and we'd like for promos to
> > be heard before they pick u...
2004 Aug 06
1
Client Woes
> Why m3u vs. pls?
More clients were m3u'able than pls'able last I checked. Specifically
Windows Media Player liked them better. But I made this analysis some
time ago. Probably over a year or so at least.
Also, apps seem to fight over PLS, but less so over M3U.
jack.
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To
2004 Aug 06
0
Problems streaming just one file, yet /default works fine.
Hi:
first off, it's probably simplest to use your webserver to serve the file.
Second, you need to use a playlist file (pls) or mpegurl (m3u) to launch
your player. I've not messed with the static streaming in icecast 1.x but
this seems to be what it is trying to do, by generating an.pls file on the
fly.
Here's a worked example. You have a webserver running. You have a file
called static.mp3 which you want to serve and...
2004 Aug 06
0
the dummy playlist... chaining a clip to a stream.
...you want each listener to hear.
If you serve the play-list from a web server make sure that the web server
software knows about the mime type that goes with your play-list format. For
m3u play-lists the server needs to be able to tell clients that the Mime type of
files ending in .m3u is audio/x-mpegurl.
It sounds like you would have administrative control of your web server, but
if you don't you can generate your play-lists from a cgi script and set the HTTP
header something equivalent to this:
#!/bin/bash
echo Content-Type: audio/x-mpegurl
echo
echo http://www.somedomai...
2004 Aug 06
0
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,
> sourceuri
That looks like the auto-generated .M3U stuff there - that is
audio/mpegurl. The MP3 itself should be audio/mpeg.
> i cant be...
2004 Aug 23
1
theora playlist extension
> If you just meant serverside generation, most people do use cgi to
> do this, and I believe icecast has this built in, so a request for
> http://icecast.server.net/stream.ogg.m3u will generate an
> audio/mpegurl response that points to the .ogg url.
>
> Are either of those what you mean?
exactly to link to an ogg vorbis stream on an icecast server you link it
with http://icecast.server.net/stream.ogg.m3u, which will launch
in most cases your favorite music player.
how should this be done with ogg t...
2001 Jan 23
1
HTTP streaming?
...attempting to get http streaming working, but the
only result I get is that the browser completely
downloads the file, and then plays it. I'm using the
type application/x-ogg, which AFAIK is the only Vorbis
type there is.
I used to have mp3 streaming working, but it had
different types i.e. mpegurl and I actually used the
'playlist' type where you just give it an http
address.
Anyone else get http streaming to work?
Thanks,
Matt
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
-...
2004 Aug 06
3
Client Woes
...at file. Which will quickly download, get
> sent to the player registered for M3u's, and then the player will
> connect and start to stream that file.
It also help's alot to associate the m3u to the correct mime type on
the server side. In Apache would you place:
AddType audio/x-mpegurl .m3u
In your httpd.conf file. This will make it work even in RealPlayer
(ie, I never had to use .ram files for mp3s)
harvey
>
> jack.
>
> --- >8 ----
> List archives: http://www.xiph.org/archives/
> icecast project homepage: http://www.icecast.org/
> To unsubscribe from...
2004 Aug 06
0
icecast2 ogg vorbis client request headers
...f 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,
> > > sourceuri
> >
> > That looks like the auto-generated .M3U stuff there - that is
> >...