Jellyfin Forum
Is it possible to change the ui fade time in the web player on windows - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions)
+--- Thread: Is it possible to change the ui fade time in the web player on windows (/t-is-it-possible-to-change-the-ui-fade-time-in-the-web-player-on-windows)



Is it possible to change the ui fade time in the web player on windows - AwesomeQuest - 2024-09-12

I saw a reddit post where the ui fade timer was changed by editing a videoosd.js file inside a docker image that was running Jellyfin. But as far as I can tell this file doesn't exist in the windows installation.

Is this possible in the windows version? I find the fade time to be much too long.


RE: Is it possible to change the ui fade time in the web player on windows - 4n8 - 2025-01-11

This is mega scuffed but I use this JS in my browser


(function() {
const originalSetTimeout = window.setTimeout;
const targetDelay = 3000;
const newDelay = 500;

window.setTimeout = function(func, delay) {
if (delay === targetDelay) {
return originalSetTimeout(func, newDelay);
}
return originalSetTimeout(func, delay);
};
})();