Aqueel
Aqueel

Reputation: 1246

Stream live video from iPhone to remote server

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.

Upvotes: 1

Views: 5490

Answers (1)

NSResponder
NSResponder

Reputation: 16861

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.

Upvotes: 2

Related Questions