From ee4bfeed9076a02d211d1e83ec2761bc61d14d7d Mon Sep 17 00:00:00 2001 From: Vanilagy <1696106+Vanilagy@users.noreply.github.com> Date: Mon, 1 Sep 2025 12:05:35 +0200 Subject: [PATCH] Fix BBB link --- examples/file-compression/file-compression.ts | 6 +++--- examples/media-player/media-player.ts | 6 +++--- examples/metadata-extraction/metadata-extraction.ts | 6 +++--- examples/thumbnail-generation/thumbnail-generation.ts | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/examples/file-compression/file-compression.ts b/examples/file-compression/file-compression.ts index 7c5ea5f..310eaca 100644 --- a/examples/file-compression/file-compression.ts +++ b/examples/file-compression/file-compression.ts @@ -139,9 +139,9 @@ selectMediaButton.addEventListener('click', () => { loadUrlButton.addEventListener('click', () => { const url = prompt( - 'Please enter a URL of a media file. Note that it must support cross-origin requests, so have the right' - + ' CORS headers set.', - 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4', + 'Please enter a URL of a media file. Note that it must be HTTPS and support cross-origin requests, so have the' + + ' right CORS headers set.', + 'https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4', ); if (!url) { return; diff --git a/examples/media-player/media-player.ts b/examples/media-player/media-player.ts index 7e204fe..cd60219 100644 --- a/examples/media-player/media-player.ts +++ b/examples/media-player/media-player.ts @@ -608,9 +608,9 @@ selectMediaButton.addEventListener('click', () => { loadUrlButton.addEventListener('click', () => { const url = prompt( - 'Please enter a URL of a media file. Note that it must support cross-origin requests, so have the right' - + ' CORS headers set.', - 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4', + 'Please enter a URL of a media file. Note that it must be HTTPS and support cross-origin requests, so have the' + + ' right CORS headers set.', + 'https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4', ); if (!url) { return; diff --git a/examples/metadata-extraction/metadata-extraction.ts b/examples/metadata-extraction/metadata-extraction.ts index 792f312..8cef42c 100644 --- a/examples/metadata-extraction/metadata-extraction.ts +++ b/examples/metadata-extraction/metadata-extraction.ts @@ -176,9 +176,9 @@ selectMediaButton.addEventListener('click', () => { loadUrlButton.addEventListener('click', () => { const url = prompt( - 'Please enter a URL of a media file. Note that it must support cross-origin requests, so have the right' - + ' CORS headers set.', - 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4', + 'Please enter a URL of a media file. Note that it must be HTTPS and support cross-origin requests, so have the' + + ' right CORS headers set.', + 'https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4', ); if (!url) { return; diff --git a/examples/thumbnail-generation/thumbnail-generation.ts b/examples/thumbnail-generation/thumbnail-generation.ts index faacc02..b71b973 100644 --- a/examples/thumbnail-generation/thumbnail-generation.ts +++ b/examples/thumbnail-generation/thumbnail-generation.ts @@ -128,9 +128,9 @@ selectMediaButton.addEventListener('click', () => { loadUrlButton.addEventListener('click', () => { const url = prompt( - 'Please enter a URL of a media file. Note that it must support cross-origin requests, so have the right' - + ' CORS headers set.', - 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4', + 'Please enter a URL of a media file. Note that it must be HTTPS and support cross-origin requests, so have the' + + ' right CORS headers set.', + 'https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4', ); if (!url) { return;