(no title)
aeroheim | 4 years ago
https://twitter.com/hyperchroma/status/1464656712544174083
I'm not sure if the trailer loading is an issue on the site - could you check the console for me and see what it says?
aeroheim | 4 years ago
https://twitter.com/hyperchroma/status/1464656712544174083
I'm not sure if the trailer loading is an issue on the site - could you check the console for me and see what it says?
codetrotter|4 years ago
In your case I see you are using a webm container. iOS prior to version 15 does not support webm natively. Then earlier this year they started adding support for parts of webm in iOS 15. https://9to5mac.com/2021/08/10/apple-adding-webm-audio-codec...
I recommend converting the video using ffmpeg.
The following should give you a video file that will be playable on most mobile devices, even quite old ones.
The HTML5 video tag supports having multiple video sources so you can still keep the webm as one alternative and browsers will pick either the webm or mp4 depending on support.See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/so... for details on multiple sources in the video element. I.e. what changes you need to make to your html.
larrysalibra|4 years ago
aeroheim|4 years ago