"[EMAIL PROTECTED]" wrote:
> 
> Is there any free software which is able to produce mp3 live streams?
> 
> --
> MP3 ENCODER mailing list ( http://geek.rcc.se/mp3encoder/ )

Probably the simplest would be a .cgi that does:

#!/usr/bin/python
print "Content-type: audio/x-mpegurl\r\n\r\n"
print "somefile.mp3\r\n\r\n"

or

#!/bin/sh
echo -n "Content-type: audio/x-mpegurl\r\n\r\n"
echo -n "http://www.someserver.org/somefile.mp3\r\n\r\n"

There's more elaborate ways to do it, such as to
skip around in a file (use the fstat python module),
parse a "TIME=1999-1023-0830" POST method, etc.
--
Bill Eldridge
Radio Free Asia
[EMAIL PROTECTED]
--
MP3 ENCODER mailing list ( http://geek.rcc.se/mp3encoder/ )

Reply via email to