我有一个可以成功对图像进行去饱和的功能,但现在我想对 ogg 视频文件进行去饱和处理。这是我的功能:
函数去饱和(img){
var img2 = Pixastic.process(img, "desaturate");
img2.onmouseout = function() {
Pixastic.revert(this);
threshold();
}
}
这是我的视频的嵌入代码:
<video id="videotag" src="video.ogg" onclick="videoclick(this); desaturate(this)"
视频播放但没有被该功能去饱和。如果有人可以帮助我解决这个问题,我将不胜感激。