Am trying to narrow down a problem and knowing if firebase storage supports byte range requests for video downloads will help. I can't seem to find that information anywhere. My web app includes video streaming functionality (You-tube style) and I wonder if this is the best choice. If not what better alternative to host the videos?
I have already implemented this as follows but my videos plays in all devices and browsers except iphones and ios devices:
<video width='100%' height='315' poster='{{ value.image }}' controls loop muted playsinline>
<source type='video/mp4' src='{{ value.video }}'>
</video>
Based on extensive research here and other resources online,
Solutions seems to be adding controls playsinline muted
to the video tag
seemed to work, mine didn't with these.
The other problem was video-container type. Have confirmed that mine is mpeg4 container
and displayed with video/mp4
in the source type
.
Last issue I see is that server might not support byte range requests, am trying to determine if this is it with firebase before deciding to move on to another video storing solution. (And any suggestions for these?)
Thanks.