-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwindow.html
More file actions
executable file
·119 lines (99 loc) · 4.25 KB
/
window.html
File metadata and controls
executable file
·119 lines (99 loc) · 4.25 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport"
content="user-scalable=yes, initial-scale=1, maximum-scale=2, minimum-scale=1, width=device-width, height=device-height" />
<link href="skins/default.css" rel="stylesheet" type="text/css">
<link href="skins/chromeapp.css" rel="stylesheet" type="text/css">
<link href="css/icons.css" rel="stylesheet" type="text/css">
<title>Ampache Player</title>
</head>
<body>
<script src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" language="javascript" src="js/jquery.dataTables.js"></script>
<script src="js/xml2array.js"></script>
<script src="js/notification.js"></script>
<script src="js/sha256.js"></script>
<script src="js/cache.js"></script>
<script src="js/feisbuk.js"></script>
<script src="js/settings.js"></script>
<script src="js/skin.js"></script>
<script src="js/playlist.js"></script>
<script src="js/lyrics.js"></script>
<script src="js/lastfm.js"></script>
<script src="js/jquery.tagcanvas.min.js"></script>
<div class="app">
<div id="playerCanvas">
<div id="subHeader">
<h1 id="title"></h1>
<h2 id="artist"></h2>
<h3 id="album"></h3>
<img src="" style='position: absolute; top: 0px; right: 0px' id="art" />
<h3 id="nextTitle"></h3>
</div>
<hr>
<div style="position:relative">
<audio controls id='ampacheplayer'>
Your browser does not support the audio tag.
</audio>
</div>
<select id="playlistalbum" placeholder="Albums"></select>
<select id="playlistselect" placeholder="Lists"></select>
<div id="toolbar">
<span id="cPrev"></span>
<span id="cNext"></span>
<span id="cRandomPl"></span>
<span id="cSettings"></span>
<span id="cReload"></span>
<span id="cLike"></span>
<span id="cShow"></span>
<span id="cLyrics"></span>
<span id="cInfo"></span>
<span id="cLastFM" title="Activate last.FM scrobbling"></span>
</div>
<div id="playlist"></div>
<div id="simpleplaylist" />
<input type="text" list="songlistSearch" id="simpleplaylistCtl" placeholder="Search song"/>
<datalist id="songlistSearch"></datalist>
<div id="songlist" ></div>
</div>
</div>
<div id="showCanvas">
<div id="lyricsCanvas" style="display:none">Configure lyrics in settings</div>
<img id="showCanvasImg" src="img/defaultbg.png" style="display:none"/>
<div id="infoCanvas" style="display:none">
<img id="infoCanvasImg"></img>
<div id="infoCanvasReal"></div>
</div>
<canvas width="300" height="300" id="myCanvas">
<p>Anything in here will be replaced on browsers that support the canvas element</p>
</canvas>
</div>
<div id="fullScreenButton" title="Toggle Fullscreen"><img src="images/fogull.png" /></div>
<div id="settings">
<h2>Ampache server settings</h2>
URL Ampache<br /> <input type="text" id="surl" name="url" value="" size="50" ><br />
User<br /> <input type="text" id="suser" name="user" value=""><br />
Pass<br /> <input type="password" id="spass" name="pass" value=""><br />
Use fanart.tv artist images (note this can increase bandwith) <input type="checkbox" id="fanart" name="fanart" value="fanart"><br />
<input style="display:none" type="checkbox" id="publishonfacebook" name="publishonfacebook" value="publishonfacebook"><br />
Fetch lyrics from http://lyrics.wikia.com/ <input type="checkbox" id="uselyrics" name="uselyrics" value="uselyrics"><br />
Use internal proxy <input type="checkbox" id="useInternalProxy" name="useInternalProxy" value="useInternalProxy"><br />
<input type="button" id="SaveSettings" value="Save!">
<input type="button" id="ClearCache" value="Clear Cache">
<input type="button" id="CloseButton" value="Close">
<p style="font-size:14px">
Sometimes you will need to press "Clear Cache" and restart app after an upgrade.
</p>
<p style="font-size:14px">
Demostration Ampache server: http://chicago.amplayer.xyz/ampachedemo/. User/Pass: guest
</p>
<span style='' id="versionLabel">v0.6.1</span>
</div>
<div id="tags" style="display: none;"></div>
</div>
<script src="js/ampache.js"></script>
</body>
</html>