If you’re talking about the webview, I haven’t tried it recently, but a long time ago I used to use the following script in the tampermonkey extension in Chrome to help fix the webview cutting off part of the screen:
// ==UserScript==
// @name Wyze Webview Improve Fullscreen
// @namespace http://tampermonkey.net/
// @version 0.3
// @description sets videos max height such that full screen videos top/bottom doesn't get cut off
// @author james.pike@agilecollab.ca
// @license MIT
// @match https://view.wyze.com/*
// @icon https://wyze.com/media/favicon/stores/1/favicon-32x32.png
// @grant none
// ==/UserScript==
(function() {
'use strict';
const style = document.createElement("style");
style.textContent = "video { max-height: calc(100vh - 80px); }";
document.head.appendChild(style);
})();
Back when I used it, that script forced the Wyze cams to display in the correct resolution on the webview without cutting anything off. I don’t know why Wyze doesn’t just program it to show the full view by default instead of cutting off the date/time. ![]()