Hello I have a php code which shows a json file with video url. I want to use that url in plyr player.
When click the link https://example.com/test.php
It shows the output file as json which is:
[{"label":"Original","file":"https://example.com.mp4","type":"video\/mp4"}]
I want to use that data with javascript and open it in plyr player. Some javascript code from plyr player. I really do not know what to do with it.
<video id="player" playsinline controls>
</video>
<script src="https://cdn.plyr.io/3.6.4/plyr.js"></script>
<script>
const player = new Plyr('#player');
</script>
You need to first get the data (here, I use
fetch) andthen(it is anasyncfunction) set the video sourcedata:Note: You'll probably want to handle
fetcherrors (outside the scope of this question).