Search code examples
videoios7nsdatam4v

Converting video file m4v to NSData


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

Thanks


Solution

  • Converting video file into nsdata

    NSData *videoData = [NSData dataWithContentsOfFile:videofilepath];
    

    or else video from url

    NSData *videoData = [NSData dataWithContentsOfURL:videourl];