视频捕获期间移动野生动物园内存不足



我有两个主要元素的 React 类。画布和视频。 我获取视频流并以 30fps 将其渲染到画布。

class GetImage extends Component {
constructor() {
super();
this.constraints = {
video: {
width: { ideal: 2048 },
height: { ideal: 1080 },
facingMode: {
exact: 'environment'
}
}
}
}
componentDidMount() {
setVideo(this.video, this.constraints, this.readyToPlayVideo)
}
capture = () => {
const { video } = this
let canvas = document.createElement('canvas')
canvas.width = video.videoWidth
canvas.height = video.videoHeight
let context = canvas.getContext('2d')
context.clearRect(0, 0, canvas.width, canvas.height);
context.drawImage(this.video, 0, 0, canvas.width, canvas.height)
this.setState({ capture: canvas.toDataURL('image/jpeg') })
stopVideo()
}

readyToPlayVideo = () => {
const { canvas, video }  = this
const { offsetHeight, offsetWidth } = video
const ctx = canvas.getContext('2d')
ctx.canvas.setAttribute('height', offsetHeight)
ctx.canvas.setAttribute('width', offsetWidth)
const timeout = 1000 / 30 // drawing at 30fps
ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
let _listener = () => {
(function loop() {
ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
ctx.drawImage(video, 0, 0)
setTimeout(loop, timeout)
})()
}
_listener();
}

retake = () =>
this.setState({ capture: null },
() => {
setVideo(this.video, this.constraints, this.readyToPlayVideo, this.handleError)
}
)
render() {
return (
<div>
<video
style={{ visibility: 'hidden'}}
ref={video => (this.video = video)}
playsInline
autoPlay
/>
<canvas ref={canvas => (this.canvas = canvas)}/>
</div>
)
}
}

目前为止,一切都好。 但是我在移动Safari上遇到了一个问题。看起来它将创建的每个 Canvas 对象都保留在内存中。

拍摄了几张照片后,Safari 因"内存不足"而崩溃。 在渲染新图像之前,我已经做了 clearRect,但它没有帮助。

这里有几个问题需要解决。首先,您的loop函数中似乎有一个循环引用;您正在函数中调用函数。

因此,自动播放视频(渲染时(不会停止..导致"内存不足"错误。

另外,我认为最佳做法是创建一个componentDidUnmount函数来销毁视频(不再需要时(。使用.dispose销毁视频。

希望这有帮助

不确定这会 100% 解决您的问题,但是,这可能会有所帮助。不要对动画使用setInterval,而是使用window.requestAnimationFrame

下面是一个示例

var requestAnimFrame = (function() {
return  window.requestAnimationFrame       ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame    ||
window.msRequestAnimationFrame     ||
function( callback ) {
window.setTimeout(callback, 1000 / 30);
};
})();
function loop(){
requestAnimFrame(loop);
ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
ctx.drawImage(video, 0, 0);
setTimeout(loop, timeout);
}
loop();

再一次,我不是 100% 确定这会解决您的问题,但是,它可能会有所帮助。如果您还有其他问题,请告诉我。

我希望这有帮助!

最新更新