mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
import { getMuxAssetId } from '../mux';
|
|
import type { SourceId } from '../sources';
|
|
|
|
export function renderMuxStoryboard(source: SourceId): string {
|
|
const id = getMuxAssetId(source);
|
|
return id
|
|
? `<track kind="metadata" label="thumbnails" src="https://image.mux.com/${id}/storyboard.vtt" default />`
|
|
: '';
|
|
}
|