I have static website in Azure and have uploaded video.mov
to its $web
container.
I have a react app that successfully plays videos using, React Azure media player:
const reactAzureMp = require('react-azure-mp');
const { AzureMP } = reactAzureMp;
<AzureMP
skin="amp-flush"
src={[{src: "https://www.rmp-streaming.com/media/big-buck-bunny-360p.mp4" , type: "video/mp4" }]}
/>
What do I need to do to change this to play video.mov
? It is one static video so I cannot justify paying for streaming media, unless I have to!