Stream Real Audio (.rm) Files?
Posted: Tue Jul 01, 2003 4:07 am
How do I create a script that streams real audio (.rm) files which hides actual file location to prevent downloading.
Thanks
Thanks
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
header('Content-type: audio/x-pn-realaudio');
header( ... );
readfile($theAudioFile);Thanks man!volka wrote:maybe it's a simple asCode: Select all
header('Content-type: audio/x-pn-realaudio'); header( ... ); readfile($theAudioFile);
Code: Select all
<?php
header('Content-type: audio/x-pn-realaudio');
readfile(Test.rm);
?>