-
Notifications
You must be signed in to change notification settings - Fork 12
/
demo.html
47 lines (39 loc) · 2.25 KB
/
demo.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
<html>
<head>
<title> Demo Player </title>
<script type="text/javascript" src="https://rawgit.com/EldinZenderink/SubPlayerJS/master/SubPlayerJS.js" ></script>
</head>
<body>
<center>
<h3> Kanbari of the Iron Fortress PV 3 - SubStationAlpha - .ass </h3>
<br />
<h6> Real Time Subtitle Parsing straight from Matroska File. (No Styling)<br /> Requires high bandwidth - cpu and memory resources, not practical for mass use!</h6>
<br />
<div id="divIDwhereVideoPlayerWillBeLoaded"></div>
<br />
Trailer by <b> <a href="http://myanimelist.net/anime/producer/858/Wit_Studio"> Wit Studio </a></b>subtitle by <b><a href="http://damedesuyo.com/">Damedesuyo</a></b>
<p>
<center>
<h3> Kimi no Na wa PV - SubStationAlpha - .ass </h3>
<br />
<div id="divIDwhereVideoPlayerWillBeLoaded3"></div>
<br />
Trailer by <b> <a href="http://myanimelist.net/anime/producer/291/CoMix_Wave_Films">CoMix Wave Films </a></b>subtitle by <b><a href="http://damedesuyo.com/">CoalGoats</a></b>
<p>
<h3> Inferno Trailer - SubRip - .srt </h3>
</p>
<div id="divIDwhereVideoPlayerWillBeLoaded2"></div>
<br />
Trailer <b><a href="http://trailers.apple.com/trailers/sony_pictures/inferno/">Inferno</a> and subtitle ripped from: <a href="https://www.youtube.com/watch?v=XgyHgaWqrGo">Subtitled Trailers</a></b>
</center>
<br />
<script>
var newPlayer = new SubPlayerJS('#divIDwhereVideoPlayerWillBeLoaded', 'http://b2.ge.tt/gett/9Z4AGVd2/test1.mkv?index=0&user=user-43BOo2lCS0ob5UmrMwB71kriAwbDhcM60Zs56-&referrer=user-43BOo2lCS0ob5UmrMwB71kriAwbDhcM60Zs56-&download=');
newPlayer.parseSubtitle();
var newPlayer2 = new SubPlayerJS('#divIDwhereVideoPlayerWillBeLoaded2', 'http://movietrailers.apple.com/movies/sony_pictures/inferno/inferno-tlr1_a720p.m4v');
newPlayer2.setSubtitle('https://raw.githubusercontent.com/EldinZenderink/SubPlayerJS/master/DemoSubtitle/inferno.srt');
var newPlayer3 = new SubPlayerJS('#divIDwhereVideoPlayerWillBeLoaded3', 'http://b2.ge.tt/gett/9Z4AGVd2/test.mkv?index=3&user=user-43BOo2lCS0ob5UmrMwB71kriAwbDhcM60Zs56-&referrer=user-43BOo2lCS0ob5UmrMwB71kriAwbDhcM60Zs56-&download=');
newPlayer3.setSubtitle('https://raw.githubusercontent.com/EldinZenderink/SubPlayerJS/master/DemoSubtitle/[CoalGoats] Kimi no Na wa. - Your Name. - PV [1F0019C0].ass');
</script>
</body>
</html>