fix(site): reset installation guide to implemented features (#707)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Darius Cepulis
2026-03-04 11:14:41 -06:00
committed by GitHub
co-authored by Claude Opus 4.6
parent 4b282ff074
commit 2db6be75be
17 changed files with 211 additions and 463 deletions
+55 -76
View File
@@ -7,45 +7,45 @@ export interface DetectionResult {
}
const DOMAIN_RULES: Array<{ match: (hostname: string) => boolean; renderer: Renderer; label: string }> = [
{
match: (h) => h === 'youtube.com' || h === 'www.youtube.com' || h === 'youtu.be' || h === 'm.youtube.com',
renderer: 'youtube',
label: 'YouTube',
},
{
match: (h) => h === 'vimeo.com' || h === 'www.vimeo.com' || h === 'player.vimeo.com',
renderer: 'vimeo',
label: 'Vimeo',
},
{
match: (h) => h === 'stream.mux.com' || h === 'mux.com' || h === 'www.mux.com',
renderer: 'mux-video',
label: 'Mux',
},
{
match: (h) => h === 'open.spotify.com',
renderer: 'spotify',
label: 'Spotify',
},
{
match: (h) =>
h === 'watch.videodelivery.net' ||
h === 'videodelivery.net' ||
h === 'cloudflarestream.com' ||
h === 'www.cloudflarestream.com',
renderer: 'cloudflare',
label: 'Cloudflare',
},
{
match: (h) => h === 'cdn.jwplayer.com' || h === 'content.jwplatform.com',
renderer: 'jwplayer',
label: 'JW Player',
},
{
match: (h) => h === 'fast.wistia.com' || h === 'fast.wistia.net' || h.endsWith('.wistia.com'),
renderer: 'wistia',
label: 'Wistia',
},
// {
// match: (h) => h === 'youtube.com' || h === 'www.youtube.com' || h === 'youtu.be' || h === 'm.youtube.com',
// renderer: 'youtube',
// label: 'YouTube',
// },
// {
// match: (h) => h === 'vimeo.com' || h === 'www.vimeo.com' || h === 'player.vimeo.com',
// renderer: 'vimeo',
// label: 'Vimeo',
// },
// {
// match: (h) => h === 'stream.mux.com' || h === 'mux.com' || h === 'www.mux.com',
// renderer: 'mux-video',
// label: 'Mux',
// },
// {
// match: (h) => h === 'open.spotify.com',
// renderer: 'spotify',
// label: 'Spotify',
// },
// {
// match: (h) =>
// h === 'watch.videodelivery.net' ||
// h === 'videodelivery.net' ||
// h === 'cloudflarestream.com' ||
// h === 'www.cloudflarestream.com',
// renderer: 'cloudflare',
// label: 'Cloudflare',
// },
// {
// match: (h) => h === 'cdn.jwplayer.com' || h === 'content.jwplatform.com',
// renderer: 'jwplayer',
// label: 'JW Player',
// },
// {
// match: (h) => h === 'fast.wistia.com' || h === 'fast.wistia.net' || h.endsWith('.wistia.com'),
// renderer: 'wistia',
// label: 'Wistia',
// },
];
const VIDEO_EXTENSIONS = new Set(['.mp4', '.webm', '.mov', '.ogv']);
@@ -70,13 +70,6 @@ function getExtension(pathname: string): string {
return clean.slice(dot).toLowerCase();
}
function resolveRendererForUseCase(renderer: Renderer, useCase: UseCase): Renderer {
if (renderer !== 'mux-video') return renderer;
if (useCase === 'default-audio') return 'mux-audio';
if (useCase === 'background-video') return 'mux-background-video';
return 'mux-video';
}
export function detectRenderer(url: string, useCase: UseCase): DetectionResult | null {
const trimmed = url.trim();
if (!trimmed) return null;
@@ -87,9 +80,8 @@ export function detectRenderer(url: string, useCase: UseCase): DetectionResult |
// Check domain rules first
for (const rule of DOMAIN_RULES) {
if (rule.match(parsed.hostname)) {
const resolved = resolveRendererForUseCase(rule.renderer, useCase);
if (!isRendererValidForUseCase(resolved, useCase)) return null;
return { renderer: resolved, label: rule.label };
if (!isRendererValidForUseCase(rule.renderer, useCase)) return null;
return { renderer: rule.renderer, label: rule.label };
}
}
@@ -101,10 +93,10 @@ export function detectRenderer(url: string, useCase: UseCase): DetectionResult |
return { renderer: 'hls', label: 'HLS' };
}
if (ext === '.mpd') {
if (!isRendererValidForUseCase('dash', useCase)) return null;
return { renderer: 'dash', label: 'DASH' };
}
// if (ext === '.mpd') {
// if (!isRendererValidForUseCase('dash', useCase)) return null;
// return { renderer: 'dash', label: 'DASH' };
// }
if (VIDEO_EXTENSIONS.has(ext)) {
if (!isRendererValidForUseCase('html5-video', useCase)) return null;
@@ -119,38 +111,25 @@ export function detectRenderer(url: string, useCase: UseCase): DetectionResult |
return null;
}
export function extractMuxPlaybackId(url: string): string | null {
const parsed = parseUrl(url);
if (!parsed) return null;
if (parsed.hostname !== 'stream.mux.com') return null;
// pathname is /{PLAYBACK_ID} or /{PLAYBACK_ID}.m3u8
const segment = parsed.pathname.slice(1); // remove leading /
if (!segment) return null;
return segment.replace(/\.m3u8$/, '') || null;
}
export function isRendererValidForUseCase(renderer: Renderer, useCase: UseCase): boolean {
return VALID_RENDERERS[useCase].includes(renderer);
}
const RENDERER_ARTICLES: Record<Renderer, 'a' | 'an'> = {
'background-video': 'a',
cloudflare: 'a',
dash: 'a',
// cloudflare: 'a',
// dash: 'a',
hls: 'an',
'html5-audio': 'an',
'html5-video': 'an',
jwplayer: 'a',
'mux-audio': 'a',
'mux-background-video': 'a',
'mux-video': 'a',
spotify: 'a',
vimeo: 'a',
wistia: 'a',
youtube: 'a',
// jwplayer: 'a',
// 'mux-audio': 'a',
// 'mux-background-video': 'a',
// 'mux-video': 'a',
// spotify: 'a',
// vimeo: 'a',
// wistia: 'a',
// youtube: 'a',
};
export function articleFor(renderer: Renderer): 'a' | 'an' {