@byomakase/omakase-player
Version:
## Omakase Player - Open source JavaScript framework for building frame accurate video experiences
10 lines (9 loc) • 617 B
TypeScript
import { Observable } from 'rxjs';
import { M3u8File } from './m3u8-file';
import { AuthenticationData } from '../common/authentication';
export declare class M3u8Util {
static fetchVttSegmentedConcat(m3u8Url: string, authentication?: AuthenticationData): Observable<string | undefined>;
static fetchFromM3u8FileVttSegmentedConcat(m3u8File: M3u8File, authentication?: AuthenticationData): Observable<string | undefined>;
static fetchSegmentedConcat(urls: string[], authentication?: AuthenticationData): Observable<string | undefined>;
static concatSegmented(vttTexts: string[]): string | undefined;
}