forked from imbushuo/MediaWiki-Sm2Shim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelfHost.Widget.html
139 lines (131 loc) · 5.65 KB
/
SelfHost.Widget.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>SoundManager 2: Bar UI Player Self Host via KnockoutJS</title>
<meta name="viewport" content="width=500, initial-scale=1">
<link rel="stylesheet" href="assets/css/win-ring-bundled.min.css" />
<link rel="stylesheet" href="assets/css/bar-ui.css"/>
<link rel="stylesheet" href="assets/css/base-ui.css" />
</head>
<body>
<div class="sm2-loading-stub">
<div class="loader">
<div class="box">
<div class="circle"></div>
</div>
<div class="box">
<div class="circle"></div>
</div>
<div class="box">
<div class="circle"></div>
</div>
<div class="box">
<div class="circle"></div>
</div>
<div class="box">
<div class="circle"></div>
</div>
<div class="box">
<div class="circle"></div>
</div>
</div>
</div>
<div data-bind='component: {
name: "sm2-player-fx",
params: {
"schemaVersion": 1,
"loop": false,
"backgroundColor": "#66ccff",
"autoPlay": true,
"isPlaylistOpen": true,
"playlist":
[
{
"audioFileUrl": "http://localhost:10050/02 - Coldplay - Hurts Like Heaven.mp3",
"lrcFileUrl": "http://localhost:10050/Coldplay - Hurts Like Heaven.lrc",
"ignoreLrcMetadata": true,
"title": "Hurts Like Heaven",
"album": "Mylo Xyloto",
"artist": "Coldplay",
"isExplicit": false,
"coverImageUrl": "http://localhost:10050/Coldplay - Mylo Xyloto.jpg"
},
{
"audioFileUrl": "https://mmixprdsjc.blob.core.windows.net/music/1171_6E583930909056E6!61165.mp3",
"lrcFileUrl": "http://localhost:10050/Katy%20Perry%20-%20Teenage%20Dream.lrc",
"ignoreLrcMetadata": true,
"isExplicit": false
},
{
"audioFileUrl": "https://mmixprdsjc.blob.core.windows.net/music/09%20No%20Words.mp3",
"lrcFileUrl": "http://localhost:10050/The Script - No Words.lrc",
"title": "No Words",
"album": "#3",
"artist": "The Script",
"isExplicit": false,
"coverImageUrl": "http://localhost:10050/%233.jpg"
},
{
"audioFileUrl": "https://mmixprdsjc.blob.core.windows.net/music/1163_6E583930909056E6!61220.mp3"
},
{
"audioFileUrl": "https://imbushuos3.azureedge.net/Snippets/Moegirlpedia/Demo.m4a"
},
{
"audioFileUrl": "https://static.mengniang.org/common/5/55/Kongo_song.mp3"
},
{
"audioFileUrl": "https://static.mengniang.org/common/f/fd/Zhenshoufu_zaochen.mp3"
}
]
}
}'>
</div>
<div data-bind='component: {
name: "sm2-player-fx",
params: {
"schemaVersion": 1,
"loop": false,
"autoPlay": false,
"playlist":
[
{
"audioFileUrl": "https://mmixprdsjc.blob.core.windows.net/music/02%20-%20Coldplay%20-%20Hurts%20Like%20Heaven.mp3",
"lrcFileUrl": "http://localhost:10050/Coldplay - Hurts Like Heaven.lrc",
"ignoreLrcMetadata": true,
"title": "Hurts Like Heaven",
"album": "Mylo Xyloto",
"artist": "Coldplay",
"isExplicit": false,
"coverImageUrl": "http://localhost:10050/Coldplay - Mylo Xyloto.jpg"
}
]
}
}'>
</div>
<div data-bind='component: {
name: "sm2-player-fx",
params: {"schemaVersion":1,"compactMode":true,"loop":false,"autoPlay":false,"playlist":[{"audioFileUrl":"http://localhost:10050/09 No Words.mp3","lrcFileUrl":"https://ibwordpressimage.s3.amazonaws.com/Snippets/Lrc/The%20Script%20-%20No%20Words.lrc","ignoreLrcMetadata":true,"title":"No Words","album":"#3","artist":"The Script","isExplicit":false}]}
}'>
</div>
<script src="Library/core-promise/client/core-promise.js"></script>
<script src="Framework/WebClient.js"></script>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="Library/knockout/dist/knockout.debug.js"></script>
<script src="CoreServices/TemplateLoader.js"></script>
<script src="Framework/HResults.js"></script>
<script src="Framework/Exception.js"></script>
<script src="Framework/ArgumentNullException.js"></script>
<script src="Library/SoundManager2/script/soundmanager2.js"></script>
<script src="Player/Models/LrcSentence.js"></script>
<script src="Player/Models/ParsedLrc.js"></script>
<script src="Framework/TextReader.js"></script>
<script src="Player/LrcParser.js"></script>
<script src="UserControl/scripts/ViewModels/LocalizationViewModel.js"></script>
<script src="UserControl/scripts/ViewModels/RuntimeThemeViewModel.js"></script>
<script src="UserControl/scripts/ViewModels/SynchronizedLyricsHandler.js"></script>
<script src="UserControl/scripts/ViewModels/PlayerViewModel.js"></script>
<script src="CoreServices/PlayerGlobal.js"></script>
</body>
</html>