UNPKG

@omnimedia/omnitool

Version:

open source video processing tools

8 lines (5 loc) 161 B
export async function loadVideo(url: string): Promise<ArrayBuffer> { return fetch(url) .then(response => response.bytes()) .then(bytes => bytes.buffer) }