try it
You can also use this code to download and save videos from the Internet to Photos.
NSURL *videoUrl = [NSURL URLWithString:[NSString stringWithFormat:@"Your Video Url or Path"]]; dispatch_queue_t q = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0ul); dispatch_async(q, ^{ NSData *videoData = [NSData dataWithContentsOfURL:videoUrl]; dispatch_async(dispatch_get_main_queue(), ^{
source share