Player input from image
Creates Image input from the given Url
const photo = new Image("https://placekitten.com/200/300")
Creates Image input from the given Blob
const file = $("#file-input").files[0] // File is subclass of Blob const photo = new Image(file)
Yields image as a sequence of ImageData frames
Player input from image