我有一个要转换为MediaStream
对象的位图数组,以便可以在HTMLVideoElement
中进行渲染,这有可能吗?
示例:
// Assume I get a list of bitmaps from some source
let bitmaps = getBitmaps();
let stream = new MediaStream();
for (let bitmap of bitmaps) {
// Somehow add the bitmap to the MediaStream
pipe(stream, bitmap);
}
我认为可以使用MediaSource
API来完成此操作,但不确定从何处开始。