Android 直播视频流问题

发布于 2024-12-06 11:39:56 字数 318 浏览 0 评论 0原文

我有一个关于来自 Android 设备的视频流的问题,也许有人会给我一些关于我的问题的有用的建议/建议。所以这是交易:

我有一个来自 Android 设备的视频流项目。想法是连接到设备到服务器,第一个设备正在流式传输实时视频并将其上传到服务器,第二个设备正在流式传输并观看第一个设备的视频。所以有这样的联系:
第一台设备----直播----> Web服务器------直播流媒体---->第二个设备,第二个设备正在连接到Web服务器。

有什么建议/建议我该如何做到这一点以及我应该使用什么?我将非常高兴听到您的想法。

提前致谢!

I have a question about video streaming from Android devices and maybe someone who will give me some useful advice/suggestions about my question.So here is the deal :

I have a project for video streaming from Android device.The idea is that to connect to devices to a server and the first one is streaming live video and upload it to server and the second device is streaming and watching the video from the first device. So there is connection like this :
First Device ----live streaming----> Web Server ------live streaming---->Second Device , where second device is connecting to the web server.

Any suggestions/advice how can I do that and what should I use?I will be really glad to hear your ideas.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌无敌 2024-12-13 11:39:56

我正在玩类似的东西。基本上:

android video capture --> upstream to server --> transcoding --> streaming to players
  • 视频由手机捕获(目前仅是 Android 的概念验证)并传送到服务器,
  • 服务器从原始格式(.3gp 内的 H.263 和 AMR-NB)执行转码
    容器)到 Flash 视频,以便可以在绝大多数浏览器中播放

我最大的问题是,使用 H.263,我无法将其实时上传到服务器。视频有一个标题,其中指示了其长度和其他信息。然后,为了可以对视频进行转码(我使用 ffmpeg),标头必须存在。但它是在视频捕获完成后由 Android 设置的。
因此,作为一种解决方法,我以 5 秒的片段捕捉视频。

请查看 http://code.google.com/p/moteve 并随时做出贡献:-)

I was playing with something similar. Basically:

android video capture --> upstream to server --> transcoding --> streaming to players
  • the video is captured by a mobile phone (currently only a proof of concept for Android) and delivered to a server
  • the server performs transcoding from the original format (H.263 and AMR-NB within a .3gp
    container) to a Flash video, so that it can be played in vast majority of browsers

My biggest issue is that with the H.263, I'm not able to upstream it live to the server. The video has a header, which indicates among others its length and other info. Then, in order the video can be transcoded (I use ffmpeg), the header must be present. But it is set by Android AFTER the video capturing is finished.
So as a work around, I'm capturing the video in e.g. 5 second slices.

Take a look at http://code.google.com/p/moteve and feel free to contribute :-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文