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.
假设我有来自视频的多个帧。我想在电影播放器中播放这些帧。这些帧可以随时更改。所以它应该像一个回调,它应该请求每个帧并且程序将帧提供给播放器作为对回调的响应。
IOS可以吗?
请指导我正确的方向以实现这一目标。
提前致谢
米娅。
您将无法使用内置电影播放器实现这种方法。但是,如果您只是要遍历存储在目录中 PNG 文件中的视频帧,那么实现起来并不难。您可以查看此代码作为起点。此源代码完全免费,可以满足您的需求。
PNGAnimatorDemo.zip
如果您想做一些更高级的事情,请查看 AVAnimator 中的 AVImageFrameDecoder 类(谷歌它以了解更多信息)。