Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update references to sintel video to shared-assets
  • Loading branch information
chrisdavidmills committed Sep 1, 2025
commit 4369c98bbe2f63e8dca2557b7cb473c9b25e3ff7
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,8 @@ Our finished example will look (and function) something like the following:
```html hidden live-sample___custom-video-player
<div class="player">
<video controls>
<source
src="https://mdn.github.io/learning-area/javascript/apis/video-audio/finished/video/sintel-short.mp4"
type="video/mp4" />
<source
src="https://mdn.github.io/learning-area/javascript/apis/video-audio/finished/video/sintel-short.webm"
type="video/webm" />
<source src="/shared-assets/videos/sintel-short.mp4" type="video/mp4" />
<source src="/shared-assets/videos/sintel-short.webm" type="video/webm" />
</video>
<div class="controls">
<button class="play" data-icon="P" aria-label="play pause toggle"></button>
Expand Down Expand Up @@ -389,10 +385,10 @@ To get started with this example, follow these steps:
<div class="player">
<video controls>
<source
src="https://mdn.github.io/learning-area/javascript/apis/video-audio/finished/video/sintel-short.mp4"
src="/shared-assets/videos/sintel-short.mp4"
type="video/mp4" />
<source
src="https://mdn.github.io/learning-area/javascript/apis/video-audio/finished/video/sintel-short.webm"
src="/shared-assets/videos/sintel-short.webm"
type="video/webm" />
</video>
<div class="controls">
Expand Down