我可以使用 MPMoviePlayerController 创建蓝屏效果吗?
我正在使用 MPMoviePlayerController 显示内嵌视频(非全屏)。我使用这个类是因为它是我使用远程文件(渐进式下载)而不是本地文件工作的唯一播放器。
有什么办法可以制作蓝屏效果吗?我的基本意思是决定某个 RGB 值并将该像素的 alpha 设置为 0。是否可以使用 MPMoviePlayerController 对每帧执行任何图像处理?
I am showing a video inline (not fullscreen) using MPMoviePlayerController. I am using this class because it is the only player I got working using a remote file (progressive download) and not a local file.
Is there any way to create a blue-screen effect? what I basically mean is decide on a certain RGB value and set that pixel's alpha to 0. Is it possible to perform any image processing per frame with MPMoviePlayerController?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能使用 MPMoviePlayerController 进行此类影片处理。
尽管如此,仍有一些方法可以实现您的要求。您可以使用 AVAssetWriter 等。
检查我的答案 类似问题。
You can not use MPMoviePlayerController for such movie processing.
Still, there is ways to accomplish what you are asking for. You may use the AVAssetWriter etc.
Check my answer on a similar question.