I'm trying to get a playable video from a url of a video stored on Google Photos. The documentation suggests adding "=dv" to the base_url
It play video in Chrome, Firefox but not in Safari.
How do I go about playing video in Safari from Google Photos API?
If I add "=m18" instead of "=dv" it will play a compressed version of video in Safari. But Google recommend to not use "=m18"
<div class="videoHolder" style="position: absolute; width: 1200px; height: 675px; top: 180.5px; left: 251px;">
<video id="video" width="1200" height="675" autoplay="" controls="true" preload="" playsinline="" muted="" poster="342278662.mp4"><source src="https://lh3.googleusercontent.com/lr/really_long_url=dv" type="video/mp4">
</video>
</div>
I'm expecting the video to stream, but I just see the buffering symbol
Any help would be very much appreciated.