
Moderator: moderators
sindre_mehus wrote:Sorry, no. Those genres are the ones that are supported by ID3v1.
Sindre
sindre_mehus wrote:No, you can set the genre to anything you like, also in Subsonic, but the combo box is populated with the genres that were defined in ID3v1 and can't be modified without changing Java source code and recompiling.
Sindre
<select name="genreAll" style="width:7em">
<option value=""/>
<c:forEach items="${model.allGenres}" var="genre">
<option ${genre eq model.defaultGenre ? "selected" : ""} value="${genre}">${genre}</option>
</c:forEach>
</select>
<select name="genreAll" style="width:7em">
<option value=""/>
<option value="Genre">Genre</option>
</select>
function setGenreTxt(){
var genre = dwr.util.getValue("genreAllTxt");
for (i=0; i<fileCount; i++) {
dwr.util.setValue("genre" + i, genre);
}
}
<input type="text" name="genreAllTxt" id="genreAllTxt" style="width:7em;" /> <a href="javascript:setGenreTxt()"
id="gatSubmit" name="gatSubmit"><fmt:message key="edittags.set"/></a><br>
<select name="genreAll" style="width:7em">
<option value=""/>
<c:forEach items="${model.allGenres}" var="genre">
<option ${genre eq model.defaultGenre ? "selected" : ""} value="${genre}">${genre}</option>
</c:forEach>
</select>
Users browsing this forum: No registered users and 45 guests