From d2aea552d9990128c0c158e190efce15b707ee09 Mon Sep 17 00:00:00 2001 From: Vanilagy <1696106+Vanilagy@users.noreply.github.com> Date: Sat, 18 Jul 2026 15:27:06 +0200 Subject: [PATCH] Add spacing --- examples/file-compression/file-compression.ts | 1 + examples/hls-transcoding/hls-transcoding.ts | 1 + examples/media-player/media-player.ts | 1 + examples/thumbnail-generation/thumbnail-generation.ts | 1 + 4 files changed, 4 insertions(+) diff --git a/examples/file-compression/file-compression.ts b/examples/file-compression/file-compression.ts index 81ed19b..1e4bf44 100644 --- a/examples/file-compression/file-compression.ts +++ b/examples/file-compression/file-compression.ts @@ -17,6 +17,7 @@ import SampleFileUrl from '../../docs/assets/big-buck-bunny-trimmed.mp4'; // Enable codecs that aren't natively supported by WebCodecs. registerAc3Decoder(); registerProresDecoder(); + (document.querySelector('#sample-file-download') as HTMLAnchorElement).href = SampleFileUrl; const selectMediaButton = document.querySelector('#select-file') as HTMLButtonElement; diff --git a/examples/hls-transcoding/hls-transcoding.ts b/examples/hls-transcoding/hls-transcoding.ts index 4b5b0eb..c2f9d67 100644 --- a/examples/hls-transcoding/hls-transcoding.ts +++ b/examples/hls-transcoding/hls-transcoding.ts @@ -23,6 +23,7 @@ import SampleFileUrl from '../../docs/assets/big-buck-bunny-trimmed.mp4'; // Enable codecs that aren't natively supported by WebCodecs. registerAc3Decoder(); registerProresDecoder(); + (document.querySelector('#sample-file-download') as HTMLAnchorElement).href = SampleFileUrl; declare global { diff --git a/examples/media-player/media-player.ts b/examples/media-player/media-player.ts index d0943b6..6d851e2 100644 --- a/examples/media-player/media-player.ts +++ b/examples/media-player/media-player.ts @@ -16,6 +16,7 @@ import SampleFileUrl from '../../docs/assets/big-buck-bunny-trimmed.mp4'; // Enable codecs that aren't natively supported by WebCodecs. registerAc3Decoder(); registerProresDecoder(); + (document.querySelector('#sample-file-download') as HTMLAnchorElement).href = SampleFileUrl; const selectMediaButton = document.querySelector('#select-file') as HTMLButtonElement; diff --git a/examples/thumbnail-generation/thumbnail-generation.ts b/examples/thumbnail-generation/thumbnail-generation.ts index 5ab3fc5..69a995a 100644 --- a/examples/thumbnail-generation/thumbnail-generation.ts +++ b/examples/thumbnail-generation/thumbnail-generation.ts @@ -7,6 +7,7 @@ import SampleFileUrl from '../../docs/assets/big-buck-bunny-trimmed.mp4'; // Enable codecs that aren't natively supported by WebCodecs. registerAc3Decoder(); registerProresDecoder(); + (document.querySelector('#sample-file-download') as HTMLAnchorElement).href = SampleFileUrl; const selectMediaButton = document.querySelector('#select-file') as HTMLButtonElement;