从webP或webM

时间:2017-07-06 08:29:39

标签: javascript webp vp8

基本上,webM和webP使用VP8数据进行编码。但此刻我只需要VP8数据。我试图从whammy和MediaRecorder渲染VP8数据,但一切都是徒劳的。

那么,有没有在javascript中从webP图像渲染VP8帧?

1 个答案:

答案 0 :(得分:0)

//VP8 data from webP in Javascript

var url = canvas.toDataURL('image/webp');
url = url.slice("data:image/webp;base64,".length); 
var str = atob(url); //decode the base64 encoded string
var array = new Uint8Array(str.length);
for(var i=0;i<array.length;i++)
    array[i] = str.charCodeAt(i);
var VP8_array = array.slice(20);  //Remove the header part[see ref]

参考:https://en.wikipedia.org/wiki/WebP