@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
28 lines (27 loc) • 496 B
TypeScript
export interface Hlss {
src: string;
}
export interface Mp4s {
size: number;
src: string;
}
export interface MediaflowVideoInfo {
id: number;
title: string;
type: string;
hls: boolean;
hlss: Hlss[];
mp4: boolean;
mp4s: Mp4s[];
sign: any[];
audioTracks: any[];
videoTracks: any[];
vp: boolean;
duration: number;
statsURL: string;
width: number;
height: number;
native: string;
subtitles: any[];
poster: string;
}