so by searching of hours in scripting and for a solution for a photo album to display a pictures
So lets see :
jw flash can read images
- Code: Select all
http://www.longtailvideo.com/support/jw-player-setup-wizard?example=203
i need to find out how to replace photo links to
- Code: Select all
http://192.168.000.1:4040/coverArt.view?size=600&path=/IMG_7119.JPG
i found a little solution
Add .jpg and .JPG to audio extensions in settings
in playlist.jsp
find
- Code: Select all
function createPlayer() {
var flashvars = {
add after
- Code: Select all
skin:"<c:url value="/flash/whotube.zip"/>",
find
- Code: Select all
if (song.format == "aac" || song.format == "m4a") {
list[0].provider = "video";
}
add after
- Code: Select all
if (song.format == "jpg" || song.format == "JPG") {
list[0].provider = "image";
}
This works only for 4.3 stable