html5のビデオタグからサムネイルをキャプチャしてアップロードしたいのですが、
ここに私のコードがあります
var w = 135;//video.videoWidth * scaleFactor;
var h = 101;//video.videoHeight * scaleFactor;
var canvas = document.createElement('canvas');
canvas.width = w;
canvas.height = h;
var ctx = canvas.getContext('2d');
ctx.drawImage(_video, 0, 0, w, h);
canvas.toDataURL("image/jpg");
var blob = canvas.msToBlob();
chrome browser でこの例外「Object # has no method 'msToBlob'」が発生しました。ここで何が問題なのですか?