mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
fix(site): use MUX_URL const with UTM params for mux.com links (#833)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.6
parent
2b8b19bf31
commit
efb2f8ff10
@@ -1,3 +1,4 @@
|
||||
import { MUX_URL } from '@/consts';
|
||||
import MuxUploaderPanel from './MuxUploaderPanel';
|
||||
import RendererSelect from './RendererSelect';
|
||||
|
||||
@@ -11,7 +12,7 @@ export default function RendererPicker() {
|
||||
<div className="flex flex-col gap-4">
|
||||
<p className="font-bold">
|
||||
Or upload your media for free to{' '}
|
||||
<a href="https://mux.com" target="_blank" rel="noopener" className="underline intent:no-underline">
|
||||
<a href={MUX_URL} target="_blank" rel="noopener" className="underline intent:no-underline">
|
||||
Mux
|
||||
</a>
|
||||
</p>
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import clsx from 'clsx';
|
||||
import { CheckCircle } from 'lucide-react';
|
||||
import { MUX_URL } from '@/consts';
|
||||
|
||||
export type UploaderState = 'idle' | 'needs_login' | 'uploading' | 'preparing' | 'ready' | 'polling_error';
|
||||
|
||||
@@ -44,7 +45,7 @@ export default function UploaderOverlay({ state, error, playbackId, onLogin, onR
|
||||
<OverlayWrapper>
|
||||
<p className="text-p3 font-bold">
|
||||
To upload this video to{' '}
|
||||
<a href="https://mux.com" target="_blank" rel="noopener" className="underline intent:no-underline">
|
||||
<a href={MUX_URL} target="_blank" rel="noopener" className="underline intent:no-underline">
|
||||
Mux
|
||||
</a>
|
||||
…
|
||||
|
||||
@@ -35,7 +35,7 @@ import jsonSpriteHtmlTs from "@/components/docs/demos/thumbnail/html/css/JsonSpr
|
||||
|
||||
`Thumbnail` can read thumbnail cues directly from your video track. Add a `<track>` with `kind="metadata"` and `label="thumbnails"` to your media element.
|
||||
|
||||
[Mux](https://mux.com) provides this as `storyboard.vtt`:
|
||||
[Mux](https://www.mux.com?utm_source=videojs&utm_campaign=vjs10) provides this as `storyboard.vtt`:
|
||||
|
||||
`https://image.mux.com/{PLAYBACK_ID}/storyboard.vtt`
|
||||
|
||||
|
||||
@@ -100,7 +100,7 @@ React and HTML demos for the same variant should use matching BEM structures.
|
||||
|
||||
All demos use these URLs:
|
||||
|
||||
These demo assets are hosted by [Mux](https://mux.com):
|
||||
These demo assets are hosted by [Mux](https://www.mux.com?utm_source=videojs&utm_campaign=vjs10):
|
||||
|
||||
```
|
||||
Video: https://stream.mux.com/BV3YZtogl89mg9VcNBhhnHm02Y34zI1nlMuMQfAbl3dM/highest.mp4
|
||||
|
||||
Reference in New Issue
Block a user