I uploaded my video in google photos and then try to play the link in jwplayer using the below script which plays google drive videos easily but it is not playing video of google photos. is this "google-drive-player-script" can play the video from google photos with some modification.?
$file = '[{"type": "video/mp4", "label": "360p", "file": "test.mp4"}]';
<script type="text/javascript">
jwplayer("myElement").setup({
playlist: [{
"sources":<?php echo $file?>,
}],
allowfullscreen: true,
width: '100%',
aspectratio: '16:9',
});
</script>