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.
我正在尝试从动画创建视频,或将动画导出到视频。我知道我们可以从 UIImage 数组创建视频,但是如何从 UIImageView 的动画创建视频?
您必须手动执行此操作。基本上你必须使用 AVAssetWriter 来生成一部电影,你需要为它提供每一帧。因此,您必须确定每个帧的 UIImageView 的状态,而不是使用 CAAnimation,并将其写入 AVAsset。我希望这有帮助。