|
@@ -20,8 +20,7 @@ var url = window.location.href;
|
|
|
url = url.split('/');
|
|
|
|
|
|
var parameters = GetRequest();
|
|
|
-var videoWidth = Number(resolvingPower) ? Number(resolvingPower) : 720
|
|
|
-var videoHeight = videoWidth === 720 ? 1280 : 1920
|
|
|
+var videoWidth, videoHeight;
|
|
|
var isControl = true; // 是否是观看模式
|
|
|
var isAuth = parameters['authPhone']; // 是否是获取的云手机
|
|
|
|
|
@@ -41,6 +40,8 @@ function throttle(fn, delay) {
|
|
|
}
|
|
|
|
|
|
function doConnectDirectives() {
|
|
|
+ videoWidth = Number(resolvingPower) ? Number(resolvingPower) : 720
|
|
|
+ videoHeight = videoWidth === 720 ? 1280 : 1920
|
|
|
wsss = new WebSocket(cUrl);
|
|
|
wsss.binaryType = 'arraybuffer';
|
|
|
|