Android MediaRecorder 流式传输
是否可以“流式传输”MediaRecorder 的结果?
我可以看到的独特方法是 mediaRecorder.setOutputFile 接收 FileDescriptor。所以我可以将结果写入文件或通过套接字发送到接收器。
我尝试了第二种解决方案,但结果视频已损坏,因为在流中不可“查找”。
这个想法是使用Android设备的相机将结果发布到Red5。
Its possible to "stream" result of MediaRecorder?
The unique method i can see is mediaRecorder.setOutputFile that receives a FileDescriptor. So i can write the result to a File or send via socket to receiver.
I tried the second solution but the result video is corrupted because is not "seekable" in stream.
The idea is to use the camera of android device to publish result to Red5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这是可能的。
以下是带有 FileDescriptor 和套接字的示例代码:
Yes it is possible.
Here is the sample code with FileDescriptor and socket:
是的,有可能,有很多例子。
您可以查看 sipdroid 示例。
或者甚至是更简单的 Android IP 摄像头。
祝你好运
Yes, it possible, there are many examples for that.
You can checkout sipdroid example.
Or even Android IP camera which is much more simple.
Good Luck