Reputation: 2997
Can anybody suggest how I can upload video file while recording.
As I am recording video using AVFoundation
this will save video to some file eg. record.mov .
Now my query is how I can upload this video while recording, as I want to save user time as soon as user record his/her video should be uploaded.
Right now I am trying with HTTP, File stream to upload video.
Upvotes: 2
Views: 6934
Reputation: 2997
I have found solution to capture videos frame while recording using AVFoundation
Apple provided this sample code
http://developer.apple.com/library/ios/#samplecode/RosyWriter/Introduction/Intro.html
Upvotes: 1