I figured out a way to send mp3's through a web server on demand
(pseudo-streaming by using CFCONTENT w/ a mime-type of audio/mpegurl.
The page that does the sending looks like this:
 
<CFCONTENT TYPE="audio/x-mpegurl">
<cfoutput>
#EXTM3U
#EXTINF:-1,#title#
http://my.server/mp3/#streamurl#
</cfoutput>
 
My question: I'd like to still do the above without mapping my mp3
folder on the web server and referring to my own server. As it is -
people can snoop around the /mp3 folder on the web server. Any
suggestions on how to get around this?
 
Thanks,
Rich


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to