Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1e18c22937 | ||
|
|
a83913d15c | ||
|
|
2f50931beb |
@@ -12,7 +12,7 @@
|
|||||||
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
||||||
<Title>Jellyfin Media Bar Enhanced Plugin</Title>
|
<Title>Jellyfin Media Bar Enhanced Plugin</Title>
|
||||||
<Authors>CodeDevMLH</Authors>
|
<Authors>CodeDevMLH</Authors>
|
||||||
<Version>1.6.1.21</Version>
|
<Version>1.6.1.22</Version>
|
||||||
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-media-bar-enhanced</RepositoryUrl>
|
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-media-bar-enhanced</RepositoryUrl>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|||||||
@@ -2743,7 +2743,7 @@ const SlideshowManager = {
|
|||||||
|
|
||||||
if (!videoBackdrop && !hasRegisteredPlayer) return false;
|
if (!videoBackdrop && !hasRegisteredPlayer) return false;
|
||||||
|
|
||||||
if (videoBackdrop.tagName === 'VIDEO') {
|
if (videoBackdrop && videoBackdrop.tagName === 'VIDEO') {
|
||||||
videoBackdrop.currentTime = 0;
|
videoBackdrop.currentTime = 0;
|
||||||
videoBackdrop.muted = STATE.slideshow.isMuted;
|
videoBackdrop.muted = STATE.slideshow.isMuted;
|
||||||
if (!STATE.slideshow.isMuted) videoBackdrop.volume = 0.4;
|
if (!STATE.slideshow.isMuted) videoBackdrop.volume = 0.4;
|
||||||
@@ -2762,7 +2762,9 @@ const SlideshowManager = {
|
|||||||
|
|
||||||
// YouTube player
|
// YouTube player
|
||||||
const player = STATE.slideshow.videoPlayers && STATE.slideshow.videoPlayers[itemId];
|
const player = STATE.slideshow.videoPlayers && STATE.slideshow.videoPlayers[itemId];
|
||||||
if (player && typeof player.loadVideoById === 'function' && player._videoId) {
|
const playerIsReady = player && typeof player.loadVideoById === 'function' && player._videoId;
|
||||||
|
|
||||||
|
if (playerIsReady) {
|
||||||
player.loadVideoById({
|
player.loadVideoById({
|
||||||
videoId: player._videoId,
|
videoId: player._videoId,
|
||||||
startSeconds: player._startTime || 0,
|
startSeconds: player._startTime || 0,
|
||||||
@@ -2788,18 +2790,64 @@ const SlideshowManager = {
|
|||||||
}
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
return true;
|
return true;
|
||||||
} else if (player && typeof player.seekTo === 'function') {
|
|
||||||
// Fallback if loadVideoById is not available or videoId missing but player object exists
|
|
||||||
const startTime = player._startTime || 0;
|
|
||||||
player.seekTo(startTime);
|
|
||||||
player.playVideo();
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// YouTube player not ready yet (still loading from preload) — mark for auto-play when onReady fires
|
// YouTube player exists but NOT fully ready yet.
|
||||||
if (videoBackdrop && videoBackdrop.id && videoBackdrop.id.startsWith('youtube-player-') && !player) {
|
// new YT.Player() returns an object immediately, but API methods like
|
||||||
console.log(`YouTube player for ${itemId} not ready yet, marking _pendingPlay`);
|
// loadVideoById and _videoId aren't available until onReady fires.
|
||||||
videoBackdrop._pendingPlay = true;
|
// onReady may have ALREADY fired (during preload), so we can't rely on
|
||||||
|
// _pendingPlay alone. Instead, poll for readiness.
|
||||||
|
const ytContainer = videoBackdrop || slide.querySelector(`[id^="youtube-player-"]`);
|
||||||
|
if (ytContainer && (ytContainer.tagName === 'IFRAME' || (ytContainer.id && ytContainer.id.startsWith('youtube-player-')))) {
|
||||||
|
console.log(`YouTube player for ${itemId} not ready yet, polling for readiness...`);
|
||||||
|
|
||||||
|
// Also set _pendingPlay as fallback in case onReady hasn't fired yet
|
||||||
|
ytContainer._pendingPlay = true;
|
||||||
|
|
||||||
|
let attempts = 0;
|
||||||
|
const maxAttempts = 25; // 25 * 200ms = 5 seconds max
|
||||||
|
const pollInterval = setInterval(() => {
|
||||||
|
attempts++;
|
||||||
|
|
||||||
|
// Stop if slide is no longer active (user navigated away)
|
||||||
|
if (!slide.classList.contains('active')) {
|
||||||
|
clearInterval(pollInterval);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const p = STATE.slideshow.videoPlayers && STATE.slideshow.videoPlayers[itemId];
|
||||||
|
if (p && typeof p.loadVideoById === 'function' && p._videoId) {
|
||||||
|
clearInterval(pollInterval);
|
||||||
|
console.log(`YouTube player for ${itemId} now ready (after ${attempts * 200}ms), starting playback`);
|
||||||
|
|
||||||
|
if (STATE.slideshow.isPaused) return;
|
||||||
|
|
||||||
|
p.loadVideoById({
|
||||||
|
videoId: p._videoId,
|
||||||
|
startSeconds: p._startTime || 0,
|
||||||
|
endSeconds: p._endTime
|
||||||
|
});
|
||||||
|
|
||||||
|
if (STATE.slideshow.isMuted) {
|
||||||
|
p.mute();
|
||||||
|
} else {
|
||||||
|
p.unMute();
|
||||||
|
p.setVolume(40);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Pause slideshow timer when video starts if configured
|
||||||
|
if (CONFIG.waitForTrailerToEnd && STATE.slideshow.slideInterval) {
|
||||||
|
STATE.slideshow.slideInterval.stop();
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (attempts >= maxAttempts) {
|
||||||
|
clearInterval(pollInterval);
|
||||||
|
console.warn(`YouTube player for ${itemId} failed to become ready after ${maxAttempts * 200}ms`);
|
||||||
|
}
|
||||||
|
}, 200);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,12 +9,12 @@
|
|||||||
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/raw/branch/main/logo.png",
|
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/raw/branch/main/logo.png",
|
||||||
"versions": [
|
"versions": [
|
||||||
{
|
{
|
||||||
"version": "1.6.1.21",
|
"version": "1.6.1.22",
|
||||||
"changelog": "- fix tv mode issue\n- refactor video playback management",
|
"changelog": "- fix tv mode issue\n- refactor video playback management",
|
||||||
"targetAbi": "10.11.0.0",
|
"targetAbi": "10.11.0.0",
|
||||||
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.6.1.21/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.6.1.22/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||||
"checksum": "d61f34dc4012a52deea2e95389ae33e8",
|
"checksum": "aec9d9b10eba6e4a540b8373c37fcd98",
|
||||||
"timestamp": "2026-02-14T00:35:01Z"
|
"timestamp": "2026-02-14T00:43:44Z"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "1.6.0.2",
|
"version": "1.6.0.2",
|
||||||
|
|||||||
Reference in New Issue
Block a user