search for: format_type_vorbis

Displaying 3 results from an estimated 3 matches for "format_type_vorbis".

2004 Aug 06
2
Also.. Relaying
...e "audio/mpeg", and > icecast > doesn't recognise the x- form. Here's a simple patch (untested) that > should > make it work. > > Mike > > > --- format.c (revision 6647) > +++ format.c (working copy) > @@ -55,6 +55,8 @@ > return FORMAT_TYPE_VORBIS; /* Now blessed by IANA */ > else if(strcmp(contenttype, "audio/mpeg") == 0) > return FORMAT_TYPE_MP3; > + else if(strcmp(contenttype, "audio/x-mpeg") == 0) > + return FORMAT_TYPE_MP3; > else > return FORMAT_ERROR; > }...
2004 Aug 06
3
Also.. Relaying
I also tried installing Icecast 1.31 ... the config file claims its relaying capabilities aren't very well tested and I can verify this. But now I'm concerned that even 2.0 won't work for me in relaying. I'm trying to relay multiple streams from a cluster these hardware encoding devices: http://www.audioactive.com/products/realtime_enc/rte_ovw.html ...to do so you
2004 Aug 06
0
Also.. Relaying
...header of "audio/x-mpeg". It should be "audio/mpeg", and icecast doesn't recognise the x- form. Here's a simple patch (untested) that should make it work. Mike <p>--- format.c (revision 6647) +++ format.c (working copy) @@ -55,6 +55,8 @@ return FORMAT_TYPE_VORBIS; /* Now blessed by IANA */ else if(strcmp(contenttype, "audio/mpeg") == 0) return FORMAT_TYPE_MP3; + else if(strcmp(contenttype, "audio/x-mpeg") == 0) + return FORMAT_TYPE_MP3; else return FORMAT_ERROR; } --- >8 ---- List archives: h...