Compare commits
53 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a5e98bdd93 | ||
|
|
ed5c0ab696 | ||
|
|
ffcbd21eb6 | ||
|
|
4ddd83ba4d | ||
|
|
b08a93718e | ||
|
|
eecb81d59a | ||
|
|
664eecf779 | ||
|
|
c833a94c3f | ||
|
|
b1c39b4b38 | ||
|
|
5e398d06a8 | ||
|
|
23a73543c9 | ||
|
|
8804048c61 | ||
|
|
992f854dd2 | ||
|
|
c30300d1ba | ||
|
|
387f0dd26f | ||
|
|
71d9cddebb | ||
|
|
9abcdf522d | ||
|
|
8c703ce171 | ||
|
|
a40ee4a40d | ||
|
|
d7e9238e21 | ||
|
|
a296caf70d | ||
|
|
86e9968243 | ||
|
|
e9fe356cee | ||
|
|
e25a99439a | ||
|
|
ba2ad8f2cc | ||
|
|
5274e61204 | ||
|
|
93919c08ef | ||
|
|
c80de82a76 | ||
|
|
c541e1e543 | ||
|
|
2c7dae4d6d | ||
|
|
3869a089a1 | ||
|
|
014c908a1e | ||
|
|
f6cecf6a9e | ||
|
|
81e4643652 | ||
|
|
1b65843b20 | ||
|
|
a70690c0de | ||
|
|
1e21286a66 | ||
|
|
90a64d49ed | ||
|
|
009798ea06 | ||
|
|
53f0f3c401 | ||
|
|
81dad8c6c6 | ||
|
|
66fe4dc3cb | ||
|
|
7be968d1c6 | ||
|
|
2d492f3fed | ||
|
|
2160e2963c | ||
|
|
dc64bbe345 | ||
|
|
3a61b3e548 | ||
|
|
950116a775 | ||
|
|
b9040c20fc | ||
|
|
8388463880 | ||
|
|
233e569c94 | ||
|
|
93c265ffed | ||
|
|
8f4dfa31c8 |
@@ -44,18 +44,6 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Api
|
||||
|
||||
var stream = assembly.GetManifestResourceStream(resourceName);
|
||||
|
||||
// if (stream == null)
|
||||
// {
|
||||
// // Try fallback/debug matching
|
||||
// var allNames = assembly.GetManifestResourceNames();
|
||||
// var match = Array.Find(allNames, n => n.EndsWith(resourcePath, StringComparison.OrdinalIgnoreCase));
|
||||
|
||||
// if (match != null)
|
||||
// {
|
||||
// stream = assembly.GetManifestResourceStream(match);
|
||||
// }
|
||||
// }
|
||||
|
||||
if (stream == null)
|
||||
{
|
||||
return NotFound($"Resource not found: {resourceName}");
|
||||
|
||||
@@ -4,6 +4,7 @@ using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using MediaBrowser.Common.Configuration;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
|
||||
namespace Jellyfin.Plugin.MediaBarEnhanced.Api
|
||||
{
|
||||
@@ -26,7 +27,7 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Api
|
||||
/// <summary>
|
||||
/// Uploads a new custom overlay image.
|
||||
/// </summary>
|
||||
// [Microsoft.AspNetCore.Authorization.Authorize]
|
||||
[Authorize(Policy = "RequiresElevation")]
|
||||
[HttpPost("OverlayImage")]
|
||||
[Consumes("multipart/form-data")]
|
||||
public async Task<IActionResult> UploadImage([FromForm] IFormFile file, [FromQuery] string? filename = null)
|
||||
@@ -40,7 +41,7 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Api
|
||||
string extension = Path.GetExtension(file.FileName);
|
||||
if (string.IsNullOrWhiteSpace(extension)) extension = ".jpg";
|
||||
|
||||
// Delete any existing file with this prefix before saving the new one (as extensions might differ)
|
||||
// Delete any existing file with this prefix before saving the new one
|
||||
string prefix = string.IsNullOrWhiteSpace(filename) ? "custom_overlay_image_global" : $"custom_overlay_image_{filename}";
|
||||
|
||||
try
|
||||
@@ -60,9 +61,6 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Api
|
||||
string targetFileName = $"{prefix}{extension}";
|
||||
string targetPath = Path.Combine(_imageDirectory, targetFileName);
|
||||
|
||||
// Delete is not strictly necessary and can cause locking issues if someone is currently reading it.
|
||||
// FileMode.Create will truncate the file if it exists, effectively overwriting it.
|
||||
// We use FileShare.None to ensure we have exclusive write access, but handle potential IOExceptions gracefully.
|
||||
using (var stream = new FileStream(targetPath, FileMode.Create, FileAccess.Write, FileShare.None))
|
||||
{
|
||||
await file.CopyToAsync(stream).ConfigureAwait(false);
|
||||
@@ -82,7 +80,6 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Api
|
||||
/// <summary>
|
||||
/// Retrieves the custom overlay image.
|
||||
/// </summary>
|
||||
// [Microsoft.AspNetCore.Authorization.Authorize]
|
||||
[HttpGet("OverlayImage")]
|
||||
public IActionResult GetImage([FromQuery] string? filename = null)
|
||||
{
|
||||
@@ -98,7 +95,6 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Api
|
||||
string targetPath = existingFiles[0];
|
||||
|
||||
// Read the file and return with appropriate MIME type
|
||||
// We use FileShare.ReadWrite | FileShare.Delete so that if someone is currently overwriting the file (uploading), we don't block them.
|
||||
var stream = new FileStream(targetPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite | FileShare.Delete);
|
||||
|
||||
string mimeType = "application/octet-stream";
|
||||
@@ -115,7 +111,7 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Api
|
||||
/// <summary>
|
||||
/// Deletes a custom overlay image.
|
||||
/// </summary>
|
||||
// [Microsoft.AspNetCore.Authorization.Authorize]
|
||||
[Authorize(Policy = "RequiresElevation")]
|
||||
[HttpDelete("OverlayImage")]
|
||||
public IActionResult DeleteImage([FromQuery] string? filename = null)
|
||||
{
|
||||
@@ -144,7 +140,6 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Api
|
||||
/// <summary>
|
||||
/// Renames a custom overlay image (used when a seasonal section is renamed).
|
||||
/// </summary>
|
||||
// [Microsoft.AspNetCore.Authorization.Authorize]
|
||||
[HttpPut("OverlayImage/Rename")]
|
||||
public IActionResult RenameImage([FromQuery] string oldName, [FromQuery] string newName)
|
||||
{
|
||||
|
||||
@@ -49,6 +49,8 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Configuration
|
||||
public bool IncludeWatchedContent { get; set; } = false;
|
||||
public string SortBy { get; set; } = "Random";
|
||||
public string SortOrder { get; set; } = "Ascending";
|
||||
public int BackdropVideoDelay { get; set; } = 0;
|
||||
public bool ConstrainPlotWidth { get; set; } = false;
|
||||
|
||||
public bool EnableCustomOverlay { get; set; } = false;
|
||||
public string CustomOverlayText { get; set; } = "";
|
||||
|
||||
@@ -259,11 +259,11 @@
|
||||
<input type="file" id="overlayImageInput" accept="image/png, image/jpeg, image/gif, image/webp" style="display: none;">
|
||||
<img id="overlayImagePreview" style="display: none; max-width: 100%; max-height: 150px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 4px; z-index: 2;" />
|
||||
<!-- A semi-transparent overlay to clear the image -->
|
||||
<button type="button" id="clearOverlayImageBtn" is="paper-icon-button-light" style="display: none; position: absolute; top: 10px; right: 10px; z-index: 3; color: #a94442;" title="Clear Image">
|
||||
<button type="button" id="clearOverlayImageBtn" class="clear-btn" is="paper-icon-button-light" style="display: none; position: absolute; top: 10px; right: 10px; z-index: 3; color: #a94442;" title="Clear Image">
|
||||
<i class="material-icons">delete</i>
|
||||
</button>
|
||||
</div>
|
||||
<div class="fieldDescription">Uploading an image will securely save it to the server and automatically update the URL field above.</div>
|
||||
<div class="fieldDescription">Uploading an image will save it to your server and automatically update the URL field above.</div>
|
||||
</div>
|
||||
|
||||
<h2 class="sectionTitle" style="margin-top: 1.2em;">Styles</h2>
|
||||
@@ -418,6 +418,13 @@
|
||||
on
|
||||
mobile devices. (looks bad on desktops)</div>
|
||||
</div>
|
||||
<div class="checkboxContainer checkboxContainer-withDescription">
|
||||
<label>
|
||||
<input is="emby-checkbox" type="checkbox" id="ConstrainPlotWidth" name="ConstrainPlotWidth" />
|
||||
<span>Constrain Plot Width</span>
|
||||
</label>
|
||||
<div class="fieldDescription">Align the description text left to match the logo width, preventing it from crossing the entire screen. (Increases the text limit to 3 lines instead of 2).</div>
|
||||
</div>
|
||||
<div class="checkboxContainer checkboxContainer-withDescription">
|
||||
<label>
|
||||
<input is="emby-checkbox" type="checkbox" id="EnableLoadingScreen"
|
||||
@@ -463,6 +470,11 @@
|
||||
<input is="emby-input" type="number" id="ShuffleInterval" name="ShuffleInterval" />
|
||||
<div class="fieldDescription">Time in milliseconds between changing slides.</div>
|
||||
</div>
|
||||
<div class="inputContainer">
|
||||
<label class="inputLabel inputLabelUnfocused" for="BackdropVideoDelay">Backdrop Video Delay (ms)</label>
|
||||
<input is="emby-input" type="number" id="BackdropVideoDelay" name="BackdropVideoDelay" />
|
||||
<div class="fieldDescription">Time in milliseconds to wait before playing backdrops/theme videos (leaves static backdrop visible longer).</div>
|
||||
</div>
|
||||
|
||||
<div class="inputContainer">
|
||||
<label class="inputLabel inputLabelUnfocused" for="RetryInterval">Retry Interval
|
||||
@@ -663,7 +675,8 @@
|
||||
'MaxDaysRecent', 'ExcludeSeasonalContent', 'HideArrowsOnMobile',
|
||||
'EnableCustomOverlay', 'CustomOverlayText', 'CustomOverlayImageUrl',
|
||||
'CustomOverlayStyle', 'CustomOverlayImageStyle', 'CustomOverlayPriority',
|
||||
'CustomOverlayPositionX', 'CustomOverlayPositionY', 'CustomOverlayScale'
|
||||
'CustomOverlayPositionX', 'CustomOverlayPositionY', 'CustomOverlayScale',
|
||||
'BackdropVideoDelay', 'ConstrainPlotWidth'
|
||||
];
|
||||
|
||||
// Manual mapping for MediaBarIsEnabled -> IsEnabled, to avoid conflicts with other plugins
|
||||
@@ -756,7 +769,7 @@
|
||||
if (urlInput.value && urlInput.value.trim() !== '') {
|
||||
previewImg.src = urlInput.value;
|
||||
previewImg.style.display = 'block';
|
||||
clearBtn.style.display = 'block';
|
||||
clearBtn.style.display = 'inline-flex';
|
||||
if(icon) icon.style.display = 'none';
|
||||
if(text) {
|
||||
text.textContent = 'Drag and drop a new image here, or click to select';
|
||||
@@ -908,7 +921,8 @@
|
||||
'MaxDaysRecent', 'ExcludeSeasonalContent', 'HideArrowsOnMobile',
|
||||
'EnableCustomOverlay', 'CustomOverlayText', 'CustomOverlayImageUrl',
|
||||
'CustomOverlayStyle', 'CustomOverlayImageStyle', 'CustomOverlayPriority',
|
||||
'CustomOverlayPositionX', 'CustomOverlayPositionY', 'CustomOverlayScale'
|
||||
'CustomOverlayPositionX', 'CustomOverlayPositionY', 'CustomOverlayScale',
|
||||
'BackdropVideoDelay', 'ConstrainPlotWidth'
|
||||
];
|
||||
|
||||
keys.forEach(function (key) {
|
||||
@@ -943,7 +957,7 @@
|
||||
MediaBarEnhancedConfigurationPage.createSectionElement(container, {
|
||||
Name: 'New Season',
|
||||
StartDay: 1, StartMonth: 1,
|
||||
EndDay: 1, EndMonth: 1,
|
||||
EndDay: 31, EndMonth: 1,
|
||||
MediaIds: '',
|
||||
OverlayText: '',
|
||||
OverlayImageUrl: ''
|
||||
@@ -1021,12 +1035,12 @@
|
||||
' </div>' +
|
||||
' </div>' +
|
||||
' <div class="inputContainer" style="flex: 1; min-width: 250px; margin: 0; padding-bottom: 5px;">' +
|
||||
' <div class="seasonal-dropzone" style="border: 2px dashed rgba(255,255,255,0.2); border-radius: 8px; padding: 1em; text-align: center; cursor: pointer; background: rgba(0,0,0,0.2); transition: all 0.2s ease; position: relative; min-height: 80px; display: flex; flex-direction: column; align-items: center; justify-content: center;">' +
|
||||
' <div class="seasonal-dropzone" style="border: 2px dashed rgba(255,255,255,0.2); border-radius: 8px; padding: 1em; text-align: center; cursor: pointer; background: rgba(0,0,0,0.2); transition: all 0.2s ease; position: relative; min-height: 98px; display: flex; flex-direction: column; align-items: center; justify-content: center;">' +
|
||||
' <i class="material-icons" style="font-size: 24px; color: rgba(255,255,255,0.4); margin-bottom: 4px;">cloud_upload</i>' +
|
||||
' <span style="font-size: 0.85em; color: rgba(255,255,255,0.7);">Upload seasonal image</span>' +
|
||||
' <input type="file" class="seasonal-file-input" accept="image/png, image/jpeg, image/gif, image/webp" style="display: none;">' +
|
||||
' <img class="seasonal-preview-img" style="display: none; max-width: 100%; max-height: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 4px; z-index: 2; object-fit: contain;" />' +
|
||||
' <button type="button" is="paper-icon-button-light" class="seasonal-clear-btn" title="Clear Image" style="display: none; position: absolute; top: 0px; right: 0px; z-index: 3; color: #a94442;"><i class="material-icons">delete</i></button>' +
|
||||
' <button type="button" is="paper-icon-button-light" class="seasonal-clear-btn remove-img" title="Clear Image" style="background: transparent; border: none; padding: 0; cursor: pointer; display: none; position: absolute; top: 10px; right: 10px; z-index: 3; color: #a94442;"><i class="material-icons">delete</i></button>' +
|
||||
' </div>' +
|
||||
' </div>' +
|
||||
'</div>';
|
||||
@@ -1098,7 +1112,7 @@
|
||||
if (val) {
|
||||
previewImg.src = val;
|
||||
previewImg.style.display = 'block';
|
||||
clearBtn.style.display = 'block';
|
||||
clearBtn.style.display = 'inline-flex';
|
||||
if(icon) icon.style.display = 'none';
|
||||
if(text) {
|
||||
text.textContent = 'Drag and drop a new image here, or click to select';
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<!-- <TreatWarningsAsErrors>false</TreatWarningsAsErrors> -->
|
||||
<Title>Jellyfin Media Bar Enhanced Plugin</Title>
|
||||
<Authors>CodeDevMLH</Authors>
|
||||
<Version>1.7.2.8</Version>
|
||||
<Version>1.8.1.6</Version>
|
||||
<RepositoryUrl>https://github.com/CodeDevMLH/jellyfin-plugin-media-bar-enhanced</RepositoryUrl>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
@@ -489,6 +489,15 @@
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.plot-container.constrained-plot {
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.plot-container.constrained-plot .plot {
|
||||
line-clamp: 3;
|
||||
-webkit-line-clamp: 3;
|
||||
}
|
||||
|
||||
.genre {
|
||||
display: flex;
|
||||
gap: 5px;
|
||||
@@ -749,6 +758,15 @@
|
||||
left: 50%;
|
||||
transform: translateX(-50%) scale(0.8);
|
||||
background-color: #ffffff00;
|
||||
width: max-content;
|
||||
max-width: 90vw;
|
||||
flex-wrap: nowrap;
|
||||
overflow: hidden;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.dot {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.dot.active {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
/*
|
||||
* Jellyfin Slideshow by M0RPH3US v4.0.1
|
||||
* Modified by CodeDevMLH
|
||||
*
|
||||
@@ -67,6 +67,8 @@ const CONFIG = {
|
||||
customOverlayPositionX: 0,
|
||||
customOverlayPositionY: 0,
|
||||
customOverlayScale: 100,
|
||||
backdropVideoDelay: 0,
|
||||
constrainPlotWidth: false,
|
||||
enableCustomMediaIds: true,
|
||||
enableSeasonalContent: false,
|
||||
customMediaIds: "",
|
||||
@@ -110,6 +112,7 @@ const STATE = {
|
||||
customTrailerUrls: {},
|
||||
ytPromise: null,
|
||||
autoplayTimeouts: [],
|
||||
playSignals: {},
|
||||
},
|
||||
};
|
||||
|
||||
@@ -340,6 +343,15 @@ const initLoadingScreen = () => {
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
// Global Failsafe, force remove loading screen after 15 seconds to prevent infinite lockouts
|
||||
setTimeout(() => {
|
||||
const loader = document.querySelector(".bar-loading");
|
||||
if (loader) {
|
||||
console.warn("🎬 Media Bar:", "Loading screen timed out! Forcing removal as a failsafe.");
|
||||
finishLoading();
|
||||
}
|
||||
}, 15000);
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -387,6 +399,7 @@ const resetSlideshowState = () => {
|
||||
STATE.slideshow.customTrailerUrls = {};
|
||||
STATE.slideshow.totalItems = 0;
|
||||
STATE.slideshow.isLoading = false;
|
||||
STATE.slideshow.playSignals = {};
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -1793,7 +1806,7 @@ const SlideCreator = {
|
||||
// Create an iframe upfront
|
||||
const ytPlayerIframe = SlideUtils.createElement("iframe", {
|
||||
id: `youtube-player-${itemId}`,
|
||||
src: `https://www.youtube-nocookie.com/embed/${videoId}?enablejsapi=1&origin=${encodeURIComponent(window.location.origin)}`,
|
||||
src: `https://www.youtube-nocookie.com/embed/${videoId}?enablejsapi=1&autoplay=0&controls=0&playsinline=1&mute=${STATE.slideshow.isMuted ? 1 : 0}&origin=${encodeURIComponent(window.location.origin)}`,
|
||||
style: "width: 100%; height: 100%; border: none;",
|
||||
allow: "autoplay; encrypted-media",
|
||||
referrerpolicy: "strict-origin-when-cross-origin",
|
||||
@@ -1868,11 +1881,11 @@ const SlideCreator = {
|
||||
event.target.setPlaybackQuality(quality);
|
||||
}
|
||||
|
||||
// Only play if this is the active slide
|
||||
// Only play if this is the active slide and the play signal has been issued (delay finished)
|
||||
const slide = document.querySelector(`.slide[data-item-id="${itemId}"]`);
|
||||
const isVideoPlayerOpen = document.querySelector('.videoPlayerContainer') || document.querySelector('.youtubePlayerContainer');
|
||||
|
||||
if (slide && slide.classList.contains('active') && !document.hidden && (!isVideoPlayerOpen || isVideoPlayerOpen.classList.contains('hide'))) {
|
||||
if (slide && slide.classList.contains('active') && STATE.slideshow.playSignals[itemId] === true && !document.hidden && (!isVideoPlayerOpen || isVideoPlayerOpen.classList.contains('hide'))) {
|
||||
event.target.playVideo();
|
||||
|
||||
// Check if it actually started playing after a short delay (handling autoplay blocks)
|
||||
@@ -2046,7 +2059,7 @@ const SlideCreator = {
|
||||
SlideUtils.truncateText(plotElement, CONFIG.maxPlotLength);
|
||||
|
||||
const plotContainer = SlideUtils.createElement("div", {
|
||||
className: "plot-container",
|
||||
className: "plot-container" + (CONFIG.constrainPlotWidth ? " constrained-plot" : ""),
|
||||
});
|
||||
plotContainer.appendChild(plotElement);
|
||||
|
||||
@@ -2363,8 +2376,17 @@ const SlideshowManager = {
|
||||
|
||||
const totalItems = STATE.slideshow.totalItems || 0;
|
||||
|
||||
// dynamically lower the max dots threshold on small screens
|
||||
let effectiveMaxDots = CONFIG.maxPaginationDots;
|
||||
if (window.matchMedia("(max-width: 767px) and (orientation: portrait)").matches) {
|
||||
const availableWidth = window.innerWidth * 0.9;
|
||||
const dotWidth = 18; // approximate width per dot
|
||||
const fittingDots = Math.floor(availableWidth / dotWidth) - 1;
|
||||
effectiveMaxDots = Math.min(effectiveMaxDots, fittingDots);
|
||||
}
|
||||
|
||||
// Switch to counter style if too many items
|
||||
if (totalItems > CONFIG.maxPaginationDots) {
|
||||
if (totalItems > effectiveMaxDots) {
|
||||
const counter = document.createElement("span");
|
||||
counter.className = "slide-counter";
|
||||
counter.id = "slide-counter";
|
||||
@@ -2425,6 +2447,11 @@ const SlideshowManager = {
|
||||
|
||||
STATE.slideshow.isTransitioning = true;
|
||||
|
||||
if (STATE.slideshow.backdropVideoTimeout) {
|
||||
clearTimeout(STATE.slideshow.backdropVideoTimeout);
|
||||
STATE.slideshow.backdropVideoTimeout = null;
|
||||
}
|
||||
|
||||
let previousVisibleSlide;
|
||||
try {
|
||||
const container = SlideUtils.getOrCreateSlidesContainer();
|
||||
@@ -2456,6 +2483,7 @@ const SlideshowManager = {
|
||||
|
||||
void currentSlide.offsetWidth;
|
||||
currentSlide.classList.add("active");
|
||||
STATE.slideshow.playSignals[currentItemId] = false;
|
||||
|
||||
// Manage Video Playback: Stop others, Play current
|
||||
// 1. Stop all other YouTube players and local video elements, release connections
|
||||
@@ -2516,11 +2544,13 @@ const SlideshowManager = {
|
||||
}
|
||||
|
||||
if (videoBackdrop) {
|
||||
// preload logic
|
||||
if (videoBackdrop.tagName === 'VIDEO') {
|
||||
// Restore src from data-src if it was deactivated to release connections
|
||||
const lazySrc = videoBackdrop.getAttribute('data-src');
|
||||
if (lazySrc && !videoBackdrop.src) {
|
||||
videoBackdrop.src = lazySrc;
|
||||
videoBackdrop.load(); // Force pre-buffering
|
||||
}
|
||||
|
||||
videoBackdrop.currentTime = 0;
|
||||
@@ -2529,22 +2559,11 @@ const SlideshowManager = {
|
||||
if (!STATE.slideshow.isMuted) {
|
||||
videoBackdrop.volume = 0.4;
|
||||
}
|
||||
|
||||
videoBackdrop.play().catch(e => {
|
||||
// Check if it actually started playing after a short delay (handling autoplay blocks)
|
||||
setTimeout(() => {
|
||||
if (videoBackdrop.paused && currentSlide.classList.contains('active')) {
|
||||
console.warn("🎬 Media Bar:", `Autoplay blocked for ${currentItemId}, attempting muted fallback`);
|
||||
videoBackdrop.muted = true;
|
||||
videoBackdrop.play().catch(err => console.error("🎬 Media Bar:", "Muted fallback failed", err));
|
||||
}
|
||||
}, 1000);
|
||||
});
|
||||
} else if (STATE.slideshow.videoPlayers && STATE.slideshow.videoPlayers[currentItemId]) {
|
||||
const player = STATE.slideshow.videoPlayers[currentItemId];
|
||||
if (player && typeof player.loadVideoById === 'function' && player._videoId) {
|
||||
// Use loadVideoById to enforce start and end times
|
||||
player.loadVideoById({
|
||||
if (player && typeof player.cueVideoById === 'function' && player._videoId) {
|
||||
// Use cueVideoById to buffer video without auto-playing it
|
||||
player.cueVideoById({
|
||||
videoId: player._videoId,
|
||||
startSeconds: player._startTime || 0,
|
||||
endSeconds: player._endTime
|
||||
@@ -2556,25 +2575,60 @@ const SlideshowManager = {
|
||||
player.unMute();
|
||||
player.setVolume(40);
|
||||
}
|
||||
|
||||
// Check if playback successfully started, otherwise fallback to muted
|
||||
setTimeout(() => {
|
||||
if (!currentSlide.classList.contains('active')) return;
|
||||
if (player.getPlayerState &&
|
||||
player.getPlayerState() !== YT.PlayerState.PLAYING &&
|
||||
player.getPlayerState() !== YT.PlayerState.BUFFERING) {
|
||||
console.log("🎬 Media Bar:", "YouTube loadVideoById didn't start playback, retrying muted...");
|
||||
player.mute();
|
||||
player.playVideo();
|
||||
}
|
||||
}, 1000);
|
||||
} else if (player && typeof player.seekTo === 'function') {
|
||||
// Fallback if loadVideoById is not available or videoId missing
|
||||
const startTime = player._startTime || 0;
|
||||
player.seekTo(startTime);
|
||||
player.playVideo();
|
||||
}
|
||||
}
|
||||
|
||||
// play logic
|
||||
const playVideoLogic = () => {
|
||||
if (!currentSlide.classList.contains('active')) return;
|
||||
|
||||
STATE.slideshow.playSignals[currentItemId] = true;
|
||||
|
||||
if (videoBackdrop.tagName === 'VIDEO') {
|
||||
videoBackdrop.play().catch(e => {
|
||||
if (!STATE.slideshow.isMuted) {
|
||||
// Check if it actually started playing after a short delay (handling autoplay blocks)
|
||||
setTimeout(() => {
|
||||
if (videoBackdrop.paused && currentSlide.classList.contains('active')) {
|
||||
console.warn("🎬 Media Bar:", `Autoplay blocked for ${currentItemId}, attempting muted fallback`);
|
||||
videoBackdrop.muted = true;
|
||||
videoBackdrop.play().catch(err => console.error("🎬 Media Bar:", "Muted fallback failed", err));
|
||||
}
|
||||
}, 1000);
|
||||
} else {
|
||||
console.error("🎬 Media Bar:", "Playback failed despite being muted", e);
|
||||
}
|
||||
});
|
||||
} else if (STATE.slideshow.videoPlayers && STATE.slideshow.videoPlayers[currentItemId]) {
|
||||
const player = STATE.slideshow.videoPlayers[currentItemId];
|
||||
if (player && typeof player.playVideo === 'function') {
|
||||
player.playVideo();
|
||||
|
||||
if (!STATE.slideshow.isMuted) {
|
||||
// Check if playback successfully started, otherwise fallback to muted
|
||||
setTimeout(() => {
|
||||
if (!currentSlide.classList.contains('active')) return;
|
||||
if (player.getPlayerState &&
|
||||
player.getPlayerState() !== YT.PlayerState.PLAYING &&
|
||||
player.getPlayerState() !== YT.PlayerState.BUFFERING) {
|
||||
console.log("🎬 Media Bar:", "YouTube didn't start playback, retrying muted...");
|
||||
player.mute();
|
||||
player.playVideo();
|
||||
}
|
||||
}, 1000);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
if (CONFIG.backdropVideoDelay > 0) {
|
||||
STATE.slideshow.backdropVideoTimeout = setTimeout(playVideoLogic, CONFIG.backdropVideoDelay);
|
||||
} else {
|
||||
playVideoLogic();
|
||||
}
|
||||
}
|
||||
|
||||
const enableAnimations = MediaBarEnhancedSettingsManager.getSetting('slideAnimations', CONFIG.slideAnimationEnabled);
|
||||
@@ -3892,8 +3946,16 @@ const slidesInit = async () => {
|
||||
homeSections.style.top = '0';
|
||||
homeSections.style.marginTop = '0';
|
||||
}
|
||||
const container = document.getElementById('slides-container');
|
||||
if (container) container.style.display = 'none';
|
||||
let container = document.getElementById('slides-container');
|
||||
if (container) {
|
||||
container.style.display = 'none';
|
||||
} else {
|
||||
// Create dummy container so loading screen's interval can trigger its own cleanup
|
||||
container = document.createElement('div');
|
||||
container.id = 'slides-container';
|
||||
container.style.display = 'none';
|
||||
document.body.appendChild(container);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -9,12 +9,20 @@
|
||||
"imageUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/raw/branch/main/logo.png",
|
||||
"versions": [
|
||||
{
|
||||
"version": "1.7.2.8",
|
||||
"changelog": "feat: add custom text/image overlay option\n- feat: add option to disable pagination dots/counter\n- feat: add exclude seasonal content from random fetching option\n- Add hide arrows on mobile option \n- fix button issue on mobile when using ElegantFin Theme",
|
||||
"version": "1.8.1.6",
|
||||
"changelog": "- fix pagination dot issue on mobile when showing more than 10 dots (should now dynamically adjust the max dots threshold based on screen size)\n- add option to delay trailer playback\n- add option to limit the plot width",
|
||||
"targetAbi": "10.11.0.0",
|
||||
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.7.2.8/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||
"checksum": "b2ddf7bd8f42d5bcddff03259115d086",
|
||||
"timestamp": "2026-03-10T23:05:13Z"
|
||||
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.8.1.6/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||
"checksum": "f6b8dfde71b376e73a83d66e13171e9c",
|
||||
"timestamp": "2026-03-24T00:04:23Z"
|
||||
},
|
||||
{
|
||||
"version": "1.8.0.0",
|
||||
"changelog": "- feat: add custom text/image overlay option\n- feat: add option to disable pagination dots/counter\n- feat: add exclude seasonal content from random fetching option\n- Add hide arrows on mobile option \n- fix button issue on mobile when using ElegantFin Theme",
|
||||
"targetAbi": "10.11.0.0",
|
||||
"sourceUrl": "https://git.mahom03-spacecloud.de/CodeDevMLH/jellyfin-plugin-media-bar-enhanced/releases/download/v1.8.0.0/Jellyfin.Plugin.MediaBarEnhanced.zip",
|
||||
"checksum": "0aac723796d41fc15987c94ac0476584",
|
||||
"timestamp": "2026-03-11T01:38:43Z"
|
||||
},
|
||||
{
|
||||
"version": "1.7.0.14",
|
||||
|
||||
Reference in New Issue
Block a user