04-09-2024 09:51 AM - last edited 04-09-2024 10:31 AM
Model: SRS656MBFH4
Version: TIZEN 7.0 (AFH-SG-KTM-24-T7XXMU 20240808.203251)
This product gets worse at every release. What are Samsung doing?! Now, it is impossible to disable the screensaver (screen off). The maximum I can set it is 5 minutes and now a web page refresh in the browser no longer keeps the screen awake/resets the timer.
This renders it utterly useless for displaying my CCTV camera streams. Every 5 minutes, someone has to get up and touch the screen - pointless. This is the only useful feature I managed to eek out of this disastrous product and now it is finally completely useless!
Does anyone know how to disable screen off? Or somehow reset the timer/keep the display on without physically touching it?
Thanks.
Solved! Go to Solution.
18-10-2024 07:56 AM
I made progress!
This would probably have been easier had I been a web developer, I'm not! So any real web developers look away now.
I think 'all' I needed was a <video> tag. Wrapping the feed in the tag keeps the screen on!
I have two camera feeds however, and sadly using two <video> tags didn't work, only one video would play at a time, so I worked around it by using both an <iframe> and a <video> tag thus:
<html>
<head>
<meta http-equiv="refresh" content="900">
</head>
<body style="background-color:black;">
<video preload autoplay muted id='video1' width='960' height='630' frameborder='0'>
<source src='http://192.168.0.8:1984/api/stream.mp4?src=porch&mp4=flac' type='video/mp4'>
</video>
<iframe class="video" width="960" height="630" src="http://192.168.0.8:1984/stream.html?src=front" frameborder="0"></iframe>
<script>
const video = document.getElementById('video1');
video.pause();
video.play();
</script>
</body>
</html>
This will suffice for me. I hope this helps someone. If you find a better/proper way, I'd be happy to be educated!
Thank you @SocietyGirl for the YouTube suggestion that inspired me.
---
18-10-2024 09:41 AM
Sigh... last word, promise. Switching one of the streams to MSE from WebRTC was also sufficient to keep the display awake.
It seems this firmware allowed RTC streams to work, however RTC streams do not keep the screen on! I have no idea why!
<html>
<head>
<meta http-equiv="refresh" content="900">
</head>
<body style="background-color:black;">
<iframe allow="autoplay" width="960" height="630" src="http://192.168.0.8:1984/stream.html?src=porch&mode=webrtc" frameborder="0"></iframe>
<iframe allow="autoplay" width="960" height="630" src="http://192.168.0.8:1984/stream.html?src=front&mode=mse" frameborder="0"></iframe>
</body>
</html>
05-09-2024 11:03 AM
Hi!
Which app do you use for CCTV streaming? ST Player, internet browser etc.?
Say hi to us on socials - @SamsungUK
05-09-2024 11:26 AM
Hi .
I use the browser to render a simple web page with a couple of iframes to go2rtc for streaming from Scrypted
<html>
<head>
<title>My CCTV</title>
<meta http-equiv="refresh" content="298">
</head>
<body style="background-color:black;">
<iframe width="960" height="630" src="http://192.168.0.8:1984/stream.html?src=porch" frameborder="0" ></iframe>
<p></p>
<iframe width="960" height="630" src="http://192.168.0.8:1984/stream.html?src=front" frameborder="0" ></iframe>
</body>
</html>
This gives me couple of pretty steady RTC streams, at least since the update, before it would only stream MSE which used to freeze a bit but still more usable than a blank screen!
The only workaround I have right now is to shout 'Alexa' every 5 minutes to wake up the screen.
C.
05-09-2024 11:28 AM
Thanks for this, I'll come back to you once I have more info...
Say hi to us on socials - @SamsungUK
13-09-2024 02:01 PM - last edited 13-09-2024 02:02 PM
Did you make any headway with this?
I did receive a call from support, but I couldn't really understand what they were saying. They mentioned something about an engineer, a firmware downgrade and responding to a comment 'somewhere', but they couldn't tell me which comment I was supposed to be responding to, nor where - so ¯\_(ツ)_/¯
The support 'transaction' previously was 8221064173, if it helps anything.
Thanks.
26-09-2024 10:24 AM
LG it is...
26-09-2024 03:23 PM
I've sent this to the team and just waiting for them to come back to me
Say hi to us on socials - @SamsungUK
27-09-2024 12:55 AM
Thank you. Forgive my random comment, borne out of frustration. And to be fair, the web browser is actually better than it was, as the cameras now stream using RTC, whereas before they could only use MSE and the browser would leak memory and crash, that doesn't happen now. I just can't see it all the time to marvel at the improvement!
27-09-2024 09:44 AM
Don't be silly, it's ok to be frustrated. I will come back to you. Just want to get you the 'right' answer ✌️
Say hi to us on socials - @SamsungUK
07-10-2024 01:29 PM
Update: No known fix for now, pushing to see if there's a workaround.
Say hi to us on socials - @SamsungUK