Getting rid of album art altogether can be done by modifying one of the files.
Unfortunately, setting the default cover art size that a player uses when it is created isn't possible. I looked into it thoroughly at one point because I wanted all players to user the large setting. The workaround I chose was to manually set the cover art sizes with one command using the database interface.
Here is how to disable album art for everyone:
We are going to edit main.jsp.
Here is the part we are going to edit:
- Code: Select all
<td style="vertical-align:top;width:100%">
<c:forEach items="${model.coverArts}" var="coverArt" varStatus="loopStatus">
<div style="float:left; padding:5px">
<c:import url="coverArt.jsp">
<c:param name="albumPath" value="${coverArt.parentFile.path}"/>
<c:param name="albumName" value="${coverArt.parentFile.name}"/>
<c:param name="coverArtSize" value="${model.coverArtSize}"/>
<c:param name="coverArtPath" value="${coverArt.path}"/>
<c:param name="showLink" value="${coverArt.parentFile.path ne model.dir.path}"/>
<c:param name="showZoom" value="${coverArt.parentFile.path eq model.dir.path}"/>
<c:param name="showChange" value="${(coverArt.parentFile.path eq model.dir.path) and model.user.coverArtRole}"/>
<c:param name="showCaption" value="true"/>
<c:param name="appearAfter" value="${loopStatus.count * 30}"/>
</c:import>
</div>
</c:forEach>
<c:if test="${model.showGenericCoverArt}">
<div style="float:left; padding:5px">
<c:import url="coverArt.jsp">
<c:param name="albumPath" value="${model.dir.path}"/>
<c:param name="coverArtSize" value="${model.coverArtSize}"/>
<c:param name="showLink" value="false"/>
<c:param name="showZoom" value="false"/>
<c:param name="showChange" value="${model.user.coverArtRole}"/>
<c:param name="appearAfter" value="0"/>
</c:import>
</div>
</c:if>
</td>
All you have to do is add "<!--" one line before this, and add "-->" one line after this.
Hope this helps!
