UNPKG

@remotion/media-parser

Version:

A pure JavaScript library for parsing video files

7 lines (6 loc) 270 B
import type { MediaParserReaderInterface } from '../../readers/reader'; import type { M3uBox } from './types'; export declare const fetchM3u8Stream: ({ url, readerInterface, }: { url: string; readerInterface: MediaParserReaderInterface; }) => Promise<M3uBox[]>;