Creates Video input from the given Url
Optional
options: Partial<Pick<HTMLVideoElement, "loop">>const video = new Video("https://www.youtube.com/watch?v=sv4EWcMs3xE")
Creates Video input from the given Blob
Optional
options: Partial<Pick<HTMLVideoElement, "loop">>const file = $("#file-input").files[0] // File is subclass of Blob
const video = new Image(file, { loop: true })
Player input from video
Supports the same mime-types as video.src