是否可以在另一个网站上显示来自其他网站的 blob 实时视频?

Is it possible to show blob realtime video from other website on another?

有一个网站供人们在线播放视频(不是 twitch)。

这里是 link 到流媒体源的代码

<video src="blob:https://some-site-here.com/18357558-8117-4aa5-a8a9-bba9b1055a87"></video>

当我在我的 HTML 页面上 post 这段代码时,我只看到流中的一张静态图片,它会在页面刷新时更新。

可以运行这个视频实时吗?怎么样?

谢谢

不,不可能。

Blob URLs can only be generated internally by the browser. URL.createObjectURL() will create a special reference to the Blob or File object which later can be released using URL.revokeObjectURL(). These URLs can only be used locally in the single instance of the browser and in the same session (ie. the life of the page/document).

引自