Disable Video Progress Bar ?

Posted:
Sun Feb 26, 2017 6:49 pm
by mindesbunister
Hi Everyone,
with the current version of subsonic and the HTML 5 video streaming i have this annoying status bar at the bottom of the screen when i stream a video.
No matter which browser i use, i have the same.
Is there a way to disable that?
Thank you in advance.
Kind regards,
Re: Disable Video Progress Bar ?

Posted:
Tue Feb 11, 2020 1:23 am
by Bailx
lol almost 3 years later and no response to this... was one of the first things i noticed when i installed this today. very distracting (mouse cursor won't disappear either, it's surely related).
very cool software... but seems to be somewhat abandoned if this is still an issue. (can't get DLNA / uPnP to work either). $1 / mo. is very cheap... i'd pay more if it actually worked... definitely has potential though... it can stream h.265... in a browser window... not many apps can say that (even here in 2020, basically none can say that)... but if you're looking at a progress bar the whole movie... lol.. no thanks
Re: Disable Video Progress Bar ?

Posted:
Fri Nov 13, 2020 8:15 am
by jasonf
Hello,
I found that if I enter the following jQuery into the browser's javascript console I can hide/show the progress bar:
Hide
- Code: Select all
$($('.fp-controls')[0]).hide();
Show
- Code: Select all
$($('.fp-controls')[0]).show();
Works on my version anyway. Hope it helps you.