Skip to content

Commit

Permalink
Merge pull request #7476 from OmarShehata/local-videos
Browse files Browse the repository at this point in the history
Use local videos in tests
  • Loading branch information
mramato authored Jan 10, 2019
2 parents 13fbbd2 + 0051fdb commit 15d5cde
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Specs/Core/VideoSynchronizerSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ defineSuite([
function loadVideo() {
var element = document.createElement('video');
var source = document.createElement('source');
source.setAttribute('src', 'http://cesiumjs.org/videos/Sandcastle/big-buck-bunny_trailer.webm');
source.setAttribute('src', '/Data/Videos/big-buck-bunny-trailer-small.webm');
source.setAttribute('type', 'video/webm');
element.appendChild(source);

source = document.createElement('source');
source.setAttribute('src', 'http://cesiumjs.org/videos/Sandcastle/big-buck-bunny_trailer.mp4');
source.setAttribute('src', '/Data/Videos/big-buck-bunny-trailer-small.mp4');
source.setAttribute('type', 'video/mp4');
element.appendChild(source);

source = document.createElement('source');
source.setAttribute('src', 'http://cesiumjs.org/videos/Sandcastle/big-buck-bunny_trailer.mov');
source.setAttribute('src', '/Data/Videos/big-buck-bunny-trailer-small.mov');
source.setAttribute('type', 'video/quicktime');
element.appendChild(source);

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 15d5cde

Please sign in to comment.