Thanks guys!
Got it working! :)
Jesus is the Lord. Amen.
Got it working! :)
Jesus is the Lord. Amen.
| Registered | Oct 24, 2009 |
| Last login | Nov 18, 2009 |
| Forum posts | 6 |
| Direct URL | http://www.flowplayer.org/forum/users/17558 |
flowplayer("player", "flowplayer-3.1.4.swf", {
clip: {
autoPlay: true,
autoBuffering: false,
fullscreenOnly: false,
bufferLength: 25
}
});
...
<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);
?>