UNPKG

@remotion/media-parser

Version:

A pure JavaScript library for parsing video files

10 lines (9 loc) 359 B
import type { TrackEntry } from './all-segments'; export type TrackInfo = { codec: string; trackTimescale: number | null; }; type TrackType = 'video' | 'audio' | 'complex' | 'subtitle' | 'button' | 'control' | 'metadata'; export declare const trackTypeToString: (trackType: number) => TrackType; export type GetTracks = () => TrackEntry[]; export {};