What's new
HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

HTML video tag failure on some Apple devices

oldcelt

New member
A small, 20 second video on my website is running into problems which are inconsistent across Apple devices.

This is what I've found:-
iPhone with iOS 13.6 - Runs as expected
iPad with iOS 9.3.6 - Runs as expected (iPad too old to be updated further)
iPad Mini with iOS 13.6 - Will not run with any browser; Safari; Opera; Chrome;
Mac with O/S 10.15.6 - Safari NO; Chrome YES Firefox YES
This is my code:-
HTML:
<div class="embed-responsive embed-responsive-4by3">
                <video class="video-background" controls="true" controlsList="nodownload" playsinline>
                        <source src="videos/logoVid265.mp4" type="video/mp4">
                        <source src="videos/logoVid.webm" type='video/webm;codecs="vp8, vorbis"'>
                        Your browser does not support the video tag.
                </video>
</div>
I've searched every technical forum I can find and not been able to find a solution. The video works perfectly on any other O/S (Windows; Android; Amazon Fire; etc).

Most threads relating to similar problems are years out of date. I'd be extremely grateful if anyone can shine a light here. TIA.
 
A small, 20 second video on my website is running into problems which are inconsistent across Apple devices.

This is what I've found:-
iPhone with iOS 13.6 - Runs as expected
iPad with iOS 9.3.6 - Runs as expected (iPad too old to be updated further)
iPad Mini with iOS 13.6 - Will not run with any browser; Safari; Opera; Chrome;
Mac with O/S 10.15.6 - Safari NO; Chrome YES Firefox YES
This is my code:-
HTML:
<div class="embed-responsive embed-responsive-4by3">
                <video class="video-background" controls="true" controlsList="nodownload" playsinline>
                        <source src="videos/logoVid265.mp4" type="video/mp4">
                        <source src="videos/logoVid.webm" type='video/webm;codecs="vp8, vorbis"'>
                        Your browser does not support the video tag.
                </video>
</div>
I've searched every technical forum I can find and not been able to find a solution. The video works perfectly on any other O/S (Windows; Android; Amazon Fire; etc).

Most threads relating to similar problems are years out of date. I'd be extremely grateful if anyone can shine a light here. TIA.
You can create a faboulous website in wordpress in just minutes. Checkout this blog, it will greatly help you:
 
I've been creating websites since before Wordpress was invented. I use Bootstrap framework these days which allows me to design and create without Wordpress limitations and complications. The problem here is with Apple and its inconsistency.

If you can show me a Wordpress snippet with a similar video of your own choice which shows no problem on any combination of Apple device/browsers I'll take my comments back and apologise.

PS: this is not an ecommerce website!
 
Back
Top