2024-04-28, 07:18 AM
OK, it goes like this.
Originally I installed JellyFin on my TV using the instructions here (note, if you do this on Windows like me, you need to have Docker for Windows running): https://github.com/Georift/install-jellyfin-tizen It is so easy and works a treat. This, however does not appear to have the Title on the screensaver.
Then I went with https://www.youtube.com/watch?v=XeB5onaKnK4 Lots of issues but I got there in the end. Basically downloading JellyFin-Web from Git (https://github.com/jellyfin/jellyfin-web (latest build 10.9.0 I think)) so I can edit it if I want to and downloading JellyFin-Tizen from Git (https://github.com/jellyfin/jellyfin-tizen). With no editing but just installing on my TV it doesn't work but displays an error about no matching method for Headers(something-or-other). So with a new build I can't get it working.
I reverted to deleting that and reinstalling as per my original version. Which is back up and running easy. No title in the screensaver.
I have tried adding custom CSS against the slideshow component classes. Setting the ".slideshowSwiperContainer" to a height of 80% proved I had the right classes. I could not effect the ".slideText" in any way. Line 431 of slideshow.js "if (item.title || item.subtitle) {" would suggest there is no title. If it is running line 400 to call the "getSwiperSlideShowFromItem(item)" then no title is being set ( which is what I was going to start playing with if I could get it to even work at all).
function getSwiperSlideHtmlFromItem(item) {
return getSwiperSlideHtmlFromSlide({
originalImage: getImgUrl(item, currentOptions.user),
Id: item.Id,
ServerId: item.ServerId,
title: item.title ************* I WOULD ADD THIS LINE TO SEE IF IT FIXED IT *******************
});
}
Does anyone have any ideas? If I could get the latest source to work on my TV maybe I'd be able to fix it myself. Or am I looking at completely the wrong thing in the first place?
Originally I installed JellyFin on my TV using the instructions here (note, if you do this on Windows like me, you need to have Docker for Windows running): https://github.com/Georift/install-jellyfin-tizen It is so easy and works a treat. This, however does not appear to have the Title on the screensaver.
Then I went with https://www.youtube.com/watch?v=XeB5onaKnK4 Lots of issues but I got there in the end. Basically downloading JellyFin-Web from Git (https://github.com/jellyfin/jellyfin-web (latest build 10.9.0 I think)) so I can edit it if I want to and downloading JellyFin-Tizen from Git (https://github.com/jellyfin/jellyfin-tizen). With no editing but just installing on my TV it doesn't work but displays an error about no matching method for Headers(something-or-other). So with a new build I can't get it working.
I reverted to deleting that and reinstalling as per my original version. Which is back up and running easy. No title in the screensaver.
I have tried adding custom CSS against the slideshow component classes. Setting the ".slideshowSwiperContainer" to a height of 80% proved I had the right classes. I could not effect the ".slideText" in any way. Line 431 of slideshow.js "if (item.title || item.subtitle) {" would suggest there is no title. If it is running line 400 to call the "getSwiperSlideShowFromItem(item)" then no title is being set ( which is what I was going to start playing with if I could get it to even work at all).
function getSwiperSlideHtmlFromItem(item) {
return getSwiperSlideHtmlFromSlide({
originalImage: getImgUrl(item, currentOptions.user),
Id: item.Id,
ServerId: item.ServerId,
title: item.title ************* I WOULD ADD THIS LINE TO SEE IF IT FIXED IT *******************
});
}
Does anyone have any ideas? If I could get the latest source to work on my TV maybe I'd be able to fix it myself. Or am I looking at completely the wrong thing in the first place?