You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Forum user: jet7

Basic information

Registered Oct 24, 2009
Last login Nov 18, 2009
Forum posts 6
Direct URL http://www.flowplayer.org/forum/users/17558

Latest forum posts

Posts:

Registered:

» » » » » » How to use PHP as source of video stream?

Posted: Nov 18, 2009

Thanks guys!

Got it working! :)

Jesus is the Lord. Amen.

Posts:

Registered:

» » » » » Buffering symbol spinning even if the video is loaded (v3.1.5 and earlier)

Posted: Oct 25, 2009

>Don't take this the wrong way but who the hell is going to wait 25 seconds for a video to start playing?

It means it will buffer 25 second of video (audio). If the internet connection is fast then it takes only few seconds to load that amount of data and it starts play it immediately.

Posts:

Registered:

» » Buffering symbol spinning even if the video is loaded (v3.1.5 and earlier)

Posted: Oct 25, 2009

The same code is shared with the other clips also (The other clips are usually longer and requires long buffer with slow connections).

Posts:

Registered:

Buffering symbol spinning even if the video is loaded (v3.1.5 and earlier)

Posted: Oct 25, 2009

The problem is this:

If the video file (and audio?) duration is less than the bufferLenght then the buffering symbol keeps spinning even if the file loading is already complete and the file starts to play.



flowplayer("player", "flowplayer-3.1.4.swf", {  
              clip:  {  
                  autoPlay: true,  
                  autoBuffering: false,
                  fullscreenOnly: false, 
                  bufferLength: 25 
             } 
                                             
        });  


Posts:

Registered:

» » How to use PHP as source of video stream?

Posted: Oct 25, 2009

Thank you! :)

Posts:

Registered:

How to use PHP as source of video stream?

Posted: Oct 24, 2009

How to get this to work with flowplayer:

---------------------


...

<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