ranui
Version:
A framework-agnostic Web Components UI library built on native custom elements, with TypeScript types, light/dark theming, SSR and PWA support.
11 lines (10 loc) • 504 B
TypeScript
import { type EngineAdapter } from './types';
/**
* FLV/MPEG-TS playback — typically single-bitrate live streams, so unlike
* HLS/DASH there is no adapter-level quality concept at all:
* `getQualityLevels()` always returns `[]`, which makes `core/clarity.ts`'s
* existing `if (levels.length <= 0) return;` guard in `createClaritySelect`
* naturally skip rendering the clarity selector — correct, since there's
* nothing to switch.
*/
export declare function createFlvAdapter(): EngineAdapter;