On our website we have a player that loads a video and then plays the next one when finished, but on my phone when on wifi it just sits there loading and does not start.
When I play this on my laptop it loads fine and when on my iapd it has a little lag, but will load.
So I think the problem is that the videos are trying to load too high of quality on mobile. So is there a way to set what quality the video loads on mobile? When I was reading I saw a option for loading different quality when the videos are on the jw servers, but not for external links.
Heres a copy of the code that we are using and a link to the page
https://legacyonline.church/236-2
jwplayer("container").setup({
file: "https://youtu.be/AegjpMaUBEs"
});
jwplayer("play", function() {
jwplayer(false);
});
jwplayer().onComplete(function() {
jwplayer().load({file:"https://www.youtube.com/watch?v=QkEDrqwOxpU&feature=youtu.be"});
jwplayer().play() });
↧