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
|
<%--@elvariable id="model" type="java.util.Map"--%>
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1" %>
<html>
<head>
<%@ include file="head.jsp" %>
<script type="text/javascript" src="<c:url value="/script/swfobject.js"/>"></script>
<script type="text/javascript" src="<c:url value="/script/prototype.js"/>"></script>
<sub:url value="/coverArt.view" var="coverArtUrl">
<c:if test="${not empty model.coverArt}">
<sub:param name="path" value="${model.coverArt.path}"/>
</c:if>
<sub:param name="size" value="200"/>
</sub:url>
<meta name="og:title" content="${fn:escapeXml(model.songs[0].artist)} — ${fn:escapeXml(model.songs[0].albumName)}"/>
<meta name="og:type" content="album"/>
<meta name="og:image" content="http://${model.redirectFrom}.subsonic.org${coverArtUrl}"/>
<script type="text/javascript">
function init() {
var flashvars = {
id:"player1",
screencolor:"000000",
frontcolor:"<spring:theme code="textColor"/>",
backcolor:"<spring:theme code="backgroundColor"/>",
stretching: "fill",
"playlist.position": "bottom",
"playlist.size": 200
};
var params = {
allowfullscreen:"true",
allowscriptaccess:"always"
};
var attributes = {
id:"player1",
name:"player1"
};
swfobject.embedSWF("<c:url value="/flash/jw-player-5.6.swf"/>", "placeholder", "500", "500", "9.0.0", false, flashvars, params, attributes);
}
function playerReady(thePlayer) {
var player = $("player1");
var list = new Array();
<c:forEach items="${model.songs}" var="song" varStatus="loopStatus">
<%--@elvariable id="song" type="net.sourceforge.subsonic.domain.MediaFile"--%>
<sub:url value="/stream" var="streamUrl">
<sub:param name="path" value="${song.path}"/>
<sub:param name="player" value="${model.player}"/>
</sub:url>
<sub:url value="/coverArt.view" var="coverUrl">
<sub:param name="size" value="500"/>
<c:if test="${not empty model.coverArts[loopStatus.count - 1]}">
<sub:param name="path" value="${model.coverArts[loopStatus.count - 1].path}"/>
</c:if>
</sub:url>
<!-- TODO: Use video provider for aac, m4a -->
list[${loopStatus.count - 1}] = {
file: "${streamUrl}",
image: "${coverUrl}",
title: "${fn:escapeXml(song.title)}",
provider: "${song.video ? "video" : "sound"}",
description: "${fn:escapeXml(song.artist)}"
};
<c:if test="${not empty song.durationSeconds}">
list[${loopStatus.count-1}].duration = ${song.durationSeconds};
</c:if>
</c:forEach>
player.sendEvent("LOAD", list);
player.sendEvent("PLAY");
}
</script>
</head>
<body class="mainframe bgcolor1" style="padding-top:2em" onload="init();">
<div style="margin:auto;width:500px">
<h1 >${model.songs[0].artist}</h1>
<div style="float:left;padding-right:1.5em">
<h2 style="margin:0;">${model.songs[0].albumName}</h2>
</div>
<div class="detail" style="float:right">Streaming by <a href="http://subsonic.org/" target="_blank"><b>Subsonic</b></a></div>
<div style="clear:both;padding-top:1em">
<div id="placeholder">
<a href="http://www.adobe.com/go/getflashplayer" target="_blank"><fmt:message key="playlist.getflash"/></a>
</div>
</div>
<div style="padding-top: 2em">${fn:escapeXml(model.share.description)}</div>
</div>
</body>
</html>
|