将实时视频从 iPhone 传输到远程服务器
我
正在尝试创建一个应用程序,该应用程序在启动时开始从相机捕获视频,然后开始实时将视频数据发送到远程服务器,并不断捕获并将其发送到服务器。所以它是一种视频直播。谁能告诉我从哪里开始?我用谷歌搜索了很多,但找不到解决这个问题的方法。请帮忙。
All
I am trying to create an app that start capturing the video from camera when it is launched and then starts sending the video data to the remote server in real time and keeps capturing and sending it to the server. So it is a kind of live video broadcast. Can anyone please tell me where to start? I have googled a lot but could not find any solution to this problem. Kindly help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从这里开始:https://developer.apple.com/streaming/
和这里:
https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/00_Introduction.html
使用 AV Foundation 框架捕获视频,并使用以下命令将其上传到服务器HTTP 流式传输。
Start here: https://developer.apple.com/streaming/
and here:
https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/00_Introduction.html
Capture your video using the AV Foundation framework, and upload it to your server using HTTP streaming.