JS - How to fix createObjectURL failing for MediaStream

URL.createObjectURL is a powerful method that can Urls from a blob object that you pass inside it. We, as developers, were used to be able to pass a MediaStream class instance inside of that method. In that cause it would return a url that could be passed around between iframes and windows and used as the src attribute for video or audio elements.

Video