美文网首页
NatCorder PC端录制失败

NatCorder PC端录制失败

作者: ShawnWeasley | 来源:发表于2020-07-15 13:47 被阅读0次

NatCorder Warning: Odd resolution might cause recording to fail
报警告说奇怪的分辨路会导致录制失败。
有时候PC端确实会录制不出来,加个判断把分辨率都改成偶数就行了:

            videoWidth = Screen.width;
            videoHeight = Screen.height;
            if (videoWidth % 2 == 1)
                videoWidth -= 1;
            if (videoHeight % 2 == 1)
                videoHeight -= 1;
位置

相关文章

网友评论

      本文标题:NatCorder PC端录制失败

      本文链接:https://www.haomeiwen.com/subject/wpbdhktx.html