Player input from video
Creates Video input from the given Url
const video = new Video("https://www.youtube.com/watch?v=sv4EWcMs3xE")
Creates Video input from the given Blob
const file = $("#file-input").files[0] // File is subclass of Blob const video = new Image(file, { loop: true })
Yields video as a sequence of ImageData frames
Stops underlying video
Player input from video