从返回图片的URL流数据

时间:2018-11-16 10:25:23

标签: javascript angular stream streaming

我对信息流有疑问。

我有一个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);
  });

你能帮我吗?

此致

0 个答案:

没有答案