mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
5eb9310d3a
Change-Id: Iae1f129d9f02ff47f09d9aacd60fb9a80ff8459c
39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Copyright 2015 Google Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Shaka Player Test Receiver</title>
|
|
<link rel="stylesheet" href="receiver.css" />
|
|
<script src="load.js"></script>
|
|
<script src="appUtils.js"></script>
|
|
<script src="receiverApp.js"></script>
|
|
<script src="//www.gstatic.com/cast/sdk/libs/receiver/2.0.0/cast_receiver.js"></script>
|
|
<script src="receiver.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="player" class="player">
|
|
<div class="media">
|
|
<video id="video"
|
|
poster="//shaka-player-demo.appspot.com/assets/poster.jpg"
|
|
autoplay></video>
|
|
</div>
|
|
<div id="bufferingSpinner"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|