kabayan1019 wrote:
@snappy46
Thanks. I will try it these week end.
Wish me luck

Finally broke down and tried POHD latest firmware based on the SDK4.0 which has a menu.rss structure similar to the Playon!DVR-HD well I think??? For some reasons the latest POHD does not seem to be fond of the RGB565 bmp format so I needed to change those bmp to regular bmp for the background and focus to show up properly on this firmware. I am not sure if you will have the same issues with the Playon!DVR-HD firmware. It is an easy fix and I could easily create another package for the SDK firmware if anyone is interested. Anyhow in a nutshell this is what I did:
1) Decrypted the menu.rss and saved as decmenu.rss.
2) Made the following changes to the decmenu.rss in bold:
else if (title == "flickr")
{
"rss_file://./scripts/Flickr/flickr.rss";
}
else if (title == "SRJG")
{
"rss_file:///usr/local/etc/srjg/MainJukebox.rss";
} else if (title == "youtube")
{
"rss_file://./scripts/Youtube/youtube_menu.rss";
.
.
.
if (serviceEnabled("InstantMessenging") != null)
{
itemTitleArray = pushBackStringArray(itemTitleArray, "InstantMessenging");
focusiconArray = pushBackStringArray(focusiconArray, "image/im_focus.bmp");
unfocusiconArray = pushBackStringArray(unfocusiconArray, "image/im_unfocus.bmp");
itemSize = Add(itemSize, 1);
}
itemTitleArray = pushBackStringArray(itemTitleArray, "SRJG");
focusiconArray = pushBackStringArray(focusiconArray, "image/srjg_focus.bmp");
unfocusiconArray = pushBackStringArray(unfocusiconArray, "image/srjg_unfocus.bmp");
itemSize = Add(itemSize, 1);totalColumnCount = Integer(itemSize/3);
if ((itemSize > 0) && (totalColumnCount == 0))
3) Copied decmenu.rss to /usr/local/etc/ directory
4) Copied the two graphic files (links to this post) to /usr/local/etc/srjg/ directory. Those pictures integrate well with the new firmware Internet media.
http://dl.dropbox.com/u/15169815/pictur ... _focus.bmphttp://dl.dropbox.com/u/15169815/pictur ... nfocus.bmp5) Added this line at the end of the /usr/local/etc/rcS file so that an ovemount occurs on boot up.
mount -o bind /usr/local/etc/decmenu.rss /usr/local/bin/scripts/menu.rss
Reboot your player you should now have an option in your internet media to select SRJG jukebox.
If you decide to try that let me know if the graphics (MainBackground, background, focus images) gets screw up. I can provide new bmp to rectify this situation.
Cheers !!!!