I've researched on how to make a video tag in html work, it says that i need to separate the source, but my problem is what if my source is like this:
src="blob:null/725b9d73-403c-41e0-81ef-95effaafd822"
While to make a video tag work, the source should be specified like this:
<video width="400">
<source src="something.mp4" type="video/mp4">
<source src="something.ogg" type="video/ogg">
</video>
Any help?