sumesh
sumesh

Reputation: 33

Does flowplayer have an option to stop buffering the video hosted in a http server

Does any one know weather flowplayer have an option to stop buffering the video hosted in a http server. I am not using a rtmp or other streaming server. So does flowplayer support this option???

Upvotes: 0

Views: 2531

Answers (1)

mhenry1384
mhenry1384

Reputation: 7688

$("#myvideo").flowplayer("/Flash/Flowplayer/flowplayer-3.2.7.swf", {
            clip:
            {
              url: "http://whatever.flv",
              autoPlay: false,
              autoBuffering: false 
            }
          });

Works for me.

(using jQuery, obviously)

Upvotes: 2

Related Questions