Skip to content

Commit

Permalink
chore: Update Cast receiver ID for v3.3
Browse files Browse the repository at this point in the history
Change-Id: I45013462a49b9e1ebfb017371b80bf351f9ee286
  • Loading branch information
joeyparrish committed Jan 7, 2022
1 parent f767260 commit 00106e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
</div>
<main class="mdl-layout__content" id="main-div">
<div id="video-bar" class="hidden">
<div data-shaka-player-container data-shaka-player-cast-receiver-id="E7271BEC" class="video-container">
<div data-shaka-player-container data-shaka-player-cast-receiver-id="BBED8D28" class="video-container">
<video data-shaka-player autoplay playsinline id="video"></video>
</div>
</div>
Expand Down
10 changes: 5 additions & 5 deletions docs/tutorials/ui.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Set up controls with HTML data attributes:
The data-shaka-player-cast-receiver-id tag allows you to provide a Cast Application ID that
the cast button will cast to; the value provided here is the sample cast receiver. -->
<div data-shaka-player-container style="max-width:40em"
data-shaka-player-cast-receiver-id="E7271BEC">
data-shaka-player-cast-receiver-id="BBED8D28">
<!-- The data-shaka-player tag will make the UI library use this video element.
If no video is provided, the UI will automatically make one inside the container div. -->
<video autoplay data-shaka-player id="video" style="width:100%;height:100%"></video>
Expand Down Expand Up @@ -111,7 +111,7 @@ set up a listener for the 'caststatuschanged' events.
<!-- Add a data-shaka-player-cast-receiver-id tag to provide a Cast Application ID that
the cast button will cast to; the value provided here is the sample cast receiver. -->
<div data-shaka-player-container style="max-width:40em"
data-shaka-player-cast-receiver-id="E7271BEC">
data-shaka-player-cast-receiver-id="BBED8D28">
</div>
```

Expand All @@ -137,7 +137,7 @@ or a `<source>` tag inside it to enable auto loading of the specified content.

```html
<div data-shaka-player-container style="max-width:40em"
data-shaka-player-cast-receiver-id="E7271BEC">
data-shaka-player-cast-receiver-id="BBED8D28">
<!-- The manifest url in the src attribute will be automatically loaded -->
<video autoplay data-shaka-player id="video" style="width:100%;height:100%"
src="https://storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd"></video>
Expand All @@ -148,7 +148,7 @@ or

```html
<div data-shaka-player-container style="max-width:40em"
data-shaka-player-cast-receiver-id="E7271BEC">
data-shaka-player-cast-receiver-id="BBED8D28">
<video autoplay data-shaka-player id="video" style="width:100%;height:100%">
<!-- The manifest url in the src attribute will be auto loaded -->
<source src="https://storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd"/>
Expand All @@ -161,7 +161,7 @@ call to the first one fails.

```html
<div data-shaka-player-container style="max-width:40em"
data-shaka-player-cast-receiver-id="E7271BEC">
data-shaka-player-cast-receiver-id="BBED8D28">
<video autoplay data-shaka-player id="video" style="width:100%;height:100%">
<!-- Try this first -->
<source src="https://storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd"/>
Expand Down

0 comments on commit 00106e2

Please sign in to comment.