我对信息流有疑问。
我有一个URL,可以返回我的图像,但是这些图像会随着时间变化。
在Javascript中,我如何将这些图像流化为视频。我使用的是最新的Angular,但我不知道如何将该URL(我无法更改的URL)转换为流URL。
我已经尝试使用setInterval loop
解决方案,但是结果很糟糕。
elementColor.src = elementColor.src.split('&')[0] + '&' + Math.random();
我也尝试过
fetch('http://' + this.ipAddress + ':4242/current.jpg?type=color', { mode: 'no-cors', headers: { 'Content-Type': 'application/octet-stream' }})
.then(response => {
// debugger;
datastream = response.body;
this.srcVideo = URL.createObjectURL(datastream);
});
你能帮我吗?
此致