i am creating application for video app in iphone but i don't know to capture a video in iphone and i want to store them in sqlite data base but i have one problem can i save direct video in sqlite database it is possible or i have to store path of video if i have to save path in sqlite database then how can i do thie please some help in this problem
|
Only iPhone 3GS and above support video recording.so you should first check if recording is supported and then start camera with desired values set for properties,using following code.
Then you should implement following delegate method to save the captured video.Storing video path in SQL/coredata would be ideal instead of storing entire video file in it.
Hope this helps. |
|||
|
|
|
You would be able to store the video data in sqlite as raw data BUT I would strongly recommend AGAINST this. The performance would be awful. Better to save the video to the documents directory and then a path to that in the DB. If you are working with sqlite then you should look at CoreData, it makes managing persistence a lot easier... download the source code for my core data tutorial as it contains a nice storage service wrapper... tutorial here |
|||
|
|
