diff --git a/demo/cast_receiver/index.html b/demo/cast_receiver/index.html index 28f2b1119..968355c46 100644 --- a/demo/cast_receiver/index.html +++ b/demo/cast_receiver/index.html @@ -21,7 +21,6 @@ Shaka Player Cast Demo - diff --git a/demo/cast_receiver/receiver_app.js b/demo/cast_receiver/receiver_app.js index c8ad77bcb..8a78dfd35 100644 --- a/demo/cast_receiver/receiver_app.js +++ b/demo/cast_receiver/receiver_app.js @@ -115,8 +115,7 @@ class ShakaReceiverApp { // Set a special poster for audio-only assets. if (!this.video_.poster && this.video_.readyState != 0 && this.player_.isAudioOnly()) { - this.video_.poster = - 'https://shaka-player-demo.appspot.com/assets/audioOnly.gif'; + this.video_.poster = '../poster-audio.gif'; } } } diff --git a/demo/index.html b/demo/index.html index 763fb0d0e..a7be183ed 100644 --- a/demo/index.html +++ b/demo/index.html @@ -24,7 +24,6 @@ Shaka Player Demo - diff --git a/demo/main.js b/demo/main.js index 059a64cc7..e7d39d640 100644 --- a/demo/main.js +++ b/demo/main.js @@ -2110,24 +2110,21 @@ const shakaDemoMain = new shakaDemo.Main(); * @private * @const {string} */ -shakaDemo.Main.mainPoster_ = - 'https://shaka-player-demo.appspot.com/assets/poster.jpg'; +shakaDemo.Main.mainPoster_ = 'poster.png'; /** * @private * @const {string} */ -shakaDemo.Main.audioOnlyPoster_ = - 'https://shaka-player-demo.appspot.com/assets/audioOnly.gif'; +shakaDemo.Main.audioOnlyPoster_ = 'poster-audio.gif'; /** * @private * @const {string} */ -shakaDemo.Main.logo_ = - 'https://shaka-player-demo.appspot.com/demo/shaka_logo_trans.png'; +shakaDemo.Main.logo_ = 'shaka_logo_trans.png'; // If setup fails and the global error handler does, too, (as happened on IE diff --git a/demo/poster-audio.gif b/demo/poster-audio.gif new file mode 100644 index 000000000..3ee856a27 Binary files /dev/null and b/demo/poster-audio.gif differ diff --git a/demo/poster.png b/demo/poster.png new file mode 100644 index 000000000..be3300e0e Binary files /dev/null and b/demo/poster.png differ diff --git a/demo/service_worker.js b/demo/service_worker.js index e977a3c28..8a126eacd 100644 --- a/demo/service_worker.js +++ b/demo/service_worker.js @@ -90,8 +90,8 @@ const CRITICAL_RESOURCES = [ const OPTIONAL_RESOURCES = [ // Optional graphics. Without these, the site won't be broken. 'favicon.ico', - 'https://shaka-player-demo.appspot.com/assets/poster.jpg', - 'https://shaka-player-demo.appspot.com/assets/audioOnly.gif', + 'poster.png', + 'poster-audio.gif', // The cast sender SDK. 'https://www.gstatic.com/cv/js/sender/v1/cast_sender.js', diff --git a/docs/tutorials/basic-usage.md b/docs/tutorials/basic-usage.md index 202a88656..6f1d958ea 100644 --- a/docs/tutorials/basic-usage.md +++ b/docs/tutorials/basic-usage.md @@ -23,7 +23,6 @@ Basic usage of Shaka Player is very easy: diff --git a/docs/tutorials/offline.md b/docs/tutorials/offline.md index 25eb965d1..052178eea 100644 --- a/docs/tutorials/offline.md +++ b/docs/tutorials/offline.md @@ -68,7 +68,6 @@ the end of the tutorial.
@@ -430,7 +429,6 @@ That’s it! For your convenience, here is the completed code:
diff --git a/test/player_external.js b/test/player_external.js index ef26541ea..f835163a6 100644 --- a/test/player_external.js +++ b/test/player_external.js @@ -55,7 +55,7 @@ describe('Player', () => { // Make sure that live streams are synced against a good clock. player.configure('manifest.dash.clockSyncUri', - 'https://shaka-player-demo.appspot.com/time.txt'); + 'https://time.akamai.com/?ms&iso'); // Disable stall detection, which can interfere with playback tests. player.configure('streaming.stallEnabled', false);