我使用了 https://github.com/CyberAgent/android-gpuimage 但它只是保存图像。
如何使用 GLSurfaceview 录制视频?
最佳答案
android-gpuimage 库不支持视频录制,但您可以尝试使用 android-gpuimage-videorecording 库。它是 android 的 gpu-image 的一个分支,也提供了视频录制功能
android-gpuimage-videorecording
查看 GPUImageMovieWriter 类
它应该为您指明在 GPUImage 之上开发自己的视频编写器的正确方向。
这个想法是:
其他有用的链接: EGL surface helper 、 Media encoder
关于android - 如何使用 GPUImage 录制视频?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36467726/