Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 FFmpeg 在我的 PC 上进行一些视频分析,但我想看看我是否可以在使用 Flash 的浏览器中做类似的事情。
Flash 是否提供任何将视频文件作为输入、将其破解并访问像素数据的方法?
谢谢!
一种方法是创建一个视频播放器(有默认组件)并将视频播放器绘制到 BitmapData 中。
var bitmapData:BitmapData = new BitmapData(videoWidth, heightHeight); bitmapData.draw(videoPlayer); trace(bitmapData.getPixel(123, 321));
这应该打印 123、321 处的像素。