-
Notifications
You must be signed in to change notification settings - Fork 0
/
player_config.html
executable file
·55 lines (48 loc) · 2.05 KB
/
player_config.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
44
45
46
47
48
49
50
51
52
53
54
55
<div id="videe-error-message" class="error" style="display: none;"></div>
<div id="videe-message" class="updated" style="display: none;"></div>
<div id="videe-enable-message" class="error">You account is not enabled yet.</div>
<div class="videe-settings">
<div class="left-side">
<h4>Player settings</h4>
<div class="videe-settings-list">
<div class="row">
Autoplay video
<span class="right"><input type="checkbox" name="autoplay" id="autoplay"/></span>
<br style="clear: both"/>
</div>
<div class="row">
Show logo
<span class="right"><input type="checkbox" name="show_logo" id="show_logo"/></span>
<br style="clear: both"/>
</div>
<div class="row small">
Width
<span class="right"><input type="text" name="width" id="p_width"/></span>
<br style="clear: both"/>
</div>
<div class="row small">
Height
<span class="right"> <input type="text" name="height" id="p_height"/></span>
<br style="clear: both"/>
</div>
<div class="row">
<button class="big-button" id="generate_code">
Generate Preview / Code
</button>
</div>
</div>
</div>
<div class="right-side">
<h4>Player preview</h4>
<video id="videe-player-preview" class="video-js vjs-default-skin vjs-big-play-centered" data-setup='{}'>
<p class="vjs-no-js">To view this video please enable JavaScript, and consider upgrading to a web browser that <a
href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a></p>
</video>
<div id="videe-player-preview-loader"></div>
<div class="embedded-code">
<h4>Embed code</h4>
<textarea id="embed-code"></textarea>
</div>
</div>
<br style="clear: both"/>
</div>