Ashutosh
Ashutosh

Reputation: 5742

Video recording and saving the video on a server

I just caught with a task which is how should i go about capturing a video in my app and saving it directly on some server. I have the sample code discussed in WWDC2010 but i just need some other more helpful links or tutorials to complete this task.

Please give me your opinion or share any links if you have.

Thanks,

Upvotes: 1

Views: 524

Answers (1)

Steve McFarlin
Steve McFarlin

Reputation: 3596

There is nothing in the APIs that will allow you to do this. The only way is to use AVAssetWriters to segment the video. You would then stream the completed segments. These would need to be reassembled on the server side if you require a single file.

Upvotes: 1

Related Questions