Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

js flv player fullscreen option

Tags:

javascript

I am developing my custom video control using jquery , javascript. for that i choose js flv player without any control bar, so I almost developed its control bar and all the option using its listner javascript object, but now there is no full screen method in that js flv player.

any body know how can I control the full screen option, I am using the following flv player

flv-player.net

like image 592
Pir Abdul Avatar asked Feb 24 '23 17:02

Pir Abdul


1 Answers

As per their FAQs:

Fullscreen only works with Flash Player newer than 9.0.16.

It is controlled by showfullscreen option which clearly mentions that it only works with Flash v9.0.16 or higher.

An alternative is to switch to FlowPlayer plugin. I've used it in a current project with great success. It provides many more options and supports mobile devices too (iPad etc).

Here's a Flowplayer demo for switching to fullscreen: Forcing to view the video in fullscreen mode
Another one: Custom Fullscreen action with overlay

like image 197
Mrchief Avatar answered Feb 27 '23 05:02

Mrchief