evictor / get-blob-duration

Convenience method to patch Chromium bug when getting duration of HTML5 video or audio Blob.
MIT License
52 stars 8 forks source link

Clean up HTML Video Element for memory management #11

Closed logg926 closed 3 years ago

logg926 commented 3 years ago

Thanks for this awesome and handy library! Would like to know in terms of memory management, will the HTML video element created during the runtime get destroy when it is done?

if not, any timeline for adding it?

davidurco commented 3 years ago

@logg926 Video HTML element is not being appended to the DOM, so there's no need to delete it. Read more here.

evictor commented 3 years ago

Thx @Hectix