Answer the question
In order to leave comments, you need to log in
MP4 video is not loading on iOS, what could be the problem?
MP4 video not loading on iOS. On Android, Windows and other videos it works fine, on iOS - no)
When I turn on the "controls" function, this picture is visible:
The video is set like this:
<div class="video-wrap">
<video loop="loop" muted="muted" playsinline="" preload="auto" src="/storage/uploads/video_607db789591a4.mp4" type="video/mp4">
<source src="/storage/uploads/video_607db789591a4.mp4" type="video/mp4">
</video>
</div>
Answer the question
In order to leave comments, you need to log in
mp4 is just a container, look what codec is inside. Most likely, safari simply does not support it.
Try to remove type or check paths
<div class="video-wrap">
<video loop="loop" muted="muted" playsinline="" preload="auto">
<source src="/storage/uploads/video_607db789591a4.mp4">
</video>
</div>
Try to make a different video format and embed it in source too
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question