How to get this to work with flowplayer:
---------------------
The problem is that it gives error 200, stream not found
---------------------
...
<a href="fp_testi.php" style="display:block;width:320px;height:250px" id="player"></a>
<script type="text/javascript">
flowplayer("player", "flowplayer-3.1.4.swf", {
clip: {
autoPlay: true,
autoBuffering: false,
fullscreenOnly: false,
bufferLength: 25
}
});
</script>
...
---------------------
<?php
// fp_testi.php:
$lh = "video.flv";
$fp = fopen($lh, 'rb');
header("Content-Type: video/x-flv");
header("Content-Length: " . filesize($lh));
fpassthru($fp);
fclose($fp);
?>
The problem is that it gives error 200, stream not found