来自 Android 的视频流
我想从 Android 设备直播视频。我发现ffserver(ffmpeg)可以在android上编译并运行。现在我需要从 Android 设备中的摄像头获取视频并将其实时发送到 ffserver。
有什么想法吗?
问候, 毫米
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会看看 android.hardware.Camera 和 android.media.MediaRecorder。您为媒体记录器设置“摄像头”,它具有启动/停止方法。当您启动它时,它将输出流式传输到文件,并在您停止时关闭该文件。
这可能是另一个值得一看的好参考。
I would look at android.hardware.Camera and android.media.MediaRecorder. You set the "camera" for the media recorder and it has a start/stop methods. It streams the output to a file when you start it, and closes the file when you stop.
This may be another good reference to look at.