Question

Can I know how to convert a video file in the format m4v to NSData and vice versa?

Thanks

Était-ce utile?

La solution

Converting video file into nsdata

NSData *videoData = [NSData dataWithContentsOfFile:videofilepath];

or else video from url

NSData *videoData = [NSData dataWithContentsOfURL:videourl];
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top