-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (38 loc) · 1.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Demo Brightcove Transcript Plugin</title>
<link href="./src/plugin.css" rel="stylesheet">
<style>
html{
font-family: Arial, sans-serif;
font-size: 1em;
line-height: 1.5;
}
.video-js{
width: 100%;
max-width: 940px;
margin: 0 auto;
height: 50vh;
}
</style>
</head>
<body>
<header>
<h1>Demo Brightcove Transcript Plugin</h1>
<p>Plugin for Brightcove Player. This follows the tutorial at <a href="https://player.support.brightcove.com/coding-topics/step-step-plugin-development.html">https://player.support.brightcove.com/coding-topics/step-step-plugin-development.html</a></p>
</header>
<video-js id="default"
data-account="6101674909001"
data-player="jo35ggX8qg"
data-embed="default"
controls=""
data-video-id="6363078307112"
data-playlist-id=""
data-application-id=""></video-js>
<script src="https://players.brightcove.net/6101674909001/jo35ggX8qg_default/index.min.js"></script>
<script src="./src/plugin.js"></script>
<script>videojs.getPlayer('default').displayBCTranscript();</script>
</body>
</html>