Development Issues For Videos

After we have done most of the development for images, the next thing we wanted to do was make sure the extension supports video files in a similar way. The first thing we checked was whether HTML and Markdown allow video previews, and it turned out that they do. We began with the webview, as the HTML looked like a solid place to start testing these formats. We tried <video> tag (like here: https://www.w3schools.com/html/html5_video.asp ) but it wasn't showing the video. Then we tried to create a <iframe> tag but faces the same problem. We also tried the <ambed> and <object> tags but neither worked. So, we started looking for a solution to our problem. Sadly, we found a similar question to ours, which was responded by a vscode bot which confirmed that vscode doesn't support video preview of any sort. After further investigation, we also learned that there is a way to load local images in a different way than what we did, u...