I agree about the 2 items being linked (10 minute time out and multi camera view).
We need both these features for Ring to become a decent security camera solution. Period.
MultiCam is Number 1 on the TOP 10 Request List and the 10 minute time out is Number 5. Keep your votes pouring in to raise the timeout limit abolishment to Number 2. (Hit the thumbs up icon at the top of this page if you haven’t already).
The best thing you can do right now if you have recently purchased a Ring camera is to return it and in the reason field, add the text “Limited to only 10 Minutes of Live View”. The word really needs to get out into social media about how horrible this flaw really is.
In the meantime, you can force the Windows 10 app to allow more than 10 minutes of live view using the following VB script code (you just need to adjust the TAB number to accomodate for your configuration):
set WshShell = WScript.CreateObject(“WScript.Shell”)
Do
WshShell.AppActivate "Ring"
WScript.Sleep 1500
WshShell.SendKeys "{TAB 17}"
WScript.Sleep 1500
WshShell.SendKeys " "
WScript.Sleep 615000
Loop