UNPKG

media-stream-library

Version:

Media stream library for Node & the Web.

9 lines (8 loc) 380 B
import { XmlMessage } from '../components/message'; import { Html5VideoConfig, Html5VideoPipeline } from './html5-video-pipeline'; export interface Html5VideoMetadataConfig extends Html5VideoConfig { metadataHandler: (msg: XmlMessage) => void; } export declare class Html5VideoMetadataPipeline extends Html5VideoPipeline { constructor(config: Html5VideoMetadataConfig); }