ios - How to save video from document directory to gallery? -
this question has answer here:
- how save recorded video photo album? 3 answers
how save video in document directory gallery in ios,here downloaded video server , saved in document directory , want move gallery.
uisavevideoatpathtosavedphotosalbum(sourcepath,nil,nil,nil);
you can pass sourcepath
nsarray *paths = nssearchpathfordirectoriesindomains(nsdocumentdirectory, nsuserdomainmask, yes); nsstring *documentsdirectory = [paths objectatindex:0];
append path or file name sourcepath.
nsstring *sourcepath = [documentsdirectory stringbyappendingpathcomponent:@"youvideo.mp4"];
Comments
Post a Comment