You can configure HTTP streaming through following posts.HTTP streaming is a technique for transferring data.For streaming the client must be able to collect the data and send it as a steady stream to the application that is processing the data and converting it to sound or pictures. This means that if the streaming client receives the data more quickly than required, it needs to save the excess data in a buffer.
1 >Upload the audio/video file's in your server.File's can upload using an FTP program.
2>You will have to add the following code to the webpage,It would be done by web developer.
based on the type of file you are streaming:
HTML Code:
* Video streaming: <embed src="mymovie.mpg" CONTROLS="imagewindow" CONSOLE="video" width="320" height="240" autostart="TRUE">
</embed>
* Audio streaming: <embed src="mymusic.mp3" CONTROLS="audiowindow" CONSOLE="audio" width="200" height="100" autostart="TRUE">
</embed>