'Video stored in Firebase not playing in Iphones

I have a 5 Mb .mp4 video in firebase storage, using the below code it loads well in all web browsers. However it does not load in iPhone. .mp4s didn't work in safari but .mov did. However both .mp4 and .mov do not work on an iPhone. What can I do or video format to use?

<video width='100%' height='315' poster='{{ value.image }}' controls loop muted playsinline>
     <source type='video/mp4' src='{{ value.video }}'>
</video>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source