I used xmoov.php to achieve streaming.
I have change the xmoov script like this:
// points to server root
define('XMOOV_PATH_ROOT', 'C:/Program Files/Apache Software Foundation/Apache2.2/htdocs'); //this is the path where my htdocs(apache server resides)
// points to the folder containing the video files.
define('XMOOV_PATH_FILES', '/phpstream/video/');//and this the video folder resided in the apache htdocs folder path
and
// INCOMING GET VARIABLES CONFIGURATION
define('XMOOV_GET_POSITION', 'start');// changed the position to start
And below is the index(html) file I used to run the script.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
<script type="text/javascript" src="swfobject.js"></script>
</head>
<body>
<div id="flashcontent">
You need to upgrade your Flash Player
This is replaced by the Flash content.
Place your alternate content here and users without the Flash plugin or with
Javascript turned off will see this. Content here allows you to leave out noscript
tags. Include a link to <a href="swfobject.html?detectflash=false">bypass the detection</a> if you wish.
</div>
<script type='text/javascript'>
var s1 = new SWFObject('player-viral.swf',"ply","500","400","9.0.124","#FFFFFF");
s1.addParam('allowfullscreen','true');
s1.addParam('allowscriptaccess','always');
s1.addParam("flashvars","file=bunny.flv&streamer=xmoov.php&autostart=true&start=3&id=1");
s1.write('flashcontent');
</body>
</html>
I placed the related video to be played in the video folder .
This is my folder structure I used:
/videos/ //videos folder
xmoov.php //xmoov file
/flash/ //player41.swf
/script/ //swobject.js.
I followed all the steps of KLink, But its not playing the video its showing loading
And the server get request from the xmoov.
And when the following link is placed on the browser
It gives an options to open and download the bunny.flv video file.
But its not playing.
Can anyone help me, I really tried for so many days,but the result is same.
Hope someone may have the same problem, before they get succeeded this streaming problem.
Ur suggestions are accepted, If I did any minor mistakes too.
I'm new to the php scripting so If I did any minor mistakes,please kindly help for this Streaming problem.
Thanks Inadvance.

Php Streaming problem