JW player not working on Internet Explorer with flash, hls/rtmp and fancybox - fancybox

We're having an issue with JW player. When opening the player in a Fancybox the player gets loaded but the play button is sort of disabled.
The strange thing is that when i double click on the player the video will start playing in full screen.
These things are working:
Outside a fancybox.
Inside a fancybox without hls/rtmp streaming.
Inside a fancybox with a flash version lower then the latest v.15
When we combine these 3 things the video won't play.

Related

phaser game freezes in iphone

I am developing a game using phaser js. This game has a tutorial video at the beginning which starts playing automatically when I launch a level. The video plays in iphone's native video player. While the video is playing, if I click the "Done" button that is seen on the top left corner of the video player, the video stops (which is fine) but unfortunately the background tutorial screen is frozen.
I am new to phaser and I don't know how to handle this issue. Would appreciate it if someone could guide me to resolve this issue?
I am pasting a sample link below.
https://phaser.io/examples/v2/video/change-source
This has videos that play as soon as the page is loaded. If you stop the video by tapping the Done button, you will notice that the background will be frozen.
Need to add event listener
tutorialVideo.video.addEventListener('webkitendfullscreen', (() => {
this.game.cache.removeVideo("tutorialVideo");
}), true);
Try it This Will Work

How to programmatically make an embedded video player play in fullscreen?

I am using the Embedded Video Player to add a video to a website. The video is contained within a small container. Therefore, I would like to provide alternative UI for starting the video in a fullscreen mode.
How to programmatically start video in an embedded video player in fullscreen?, i.e. equivalent to user hitting "Fullscreen" button on the video player itself.

mediaelement.js youtube preview image

I use Contao 3 an the youtube content element, which basically is the mediaelement.js Plugin.
As soon as I add an preview image, which is seen, before we click on the video to start playing.
On desktop computers it works fine.
On mobile phones / Tablets (Iphone, Ipad) i doesn't work. We can't press play or start the video. As soon as I remove the picture, it works.
Are there any known problems with this?
thx

Tips on using webview to play an embedded Flash movie

I've tried (without success) to get a video to play within a webview. I can see the video thumbnail with the default play button overlaying the video.
When I click the play button - the entire video hi-lights in transparent yellowish/orange. Clicking play again causes the Play button to blink. The thumbnail always remains, but never plays. I can even see the timeline below the video with the play-head, etc. I can never touch the video controls, because every click treats the entire video like one big button - and hi-lights like mentioned above.
They are numerous videos to be played and they are not at YouTube, so launching the YT player with an intent isn't desired.
I'm using SDK 8 (2.2), runing on a 2.3.6 device, and Have the latest Flash Player 11.xxxxx installed.
Any suggestions?
Took another approach in the app.

Accessing iPhone native video player that opens instead of HTML5 video

Annoyingly, when you have an HTML5 video on an HTML page, loaded inside an UIWebView, it opens the native player to play that video when you finally press the play button.
Is there a way to access that native player so I can either override the aspect ratio or hide the controls?
I tried checking all of the views that were added to my UIWebView, but that didn't get me anywhere.
Cheers
Maybe you could intercept the click on video inside your UIWebView and starts the native player pointing it to the video url.
In this way you have full control on the video player.