Converting audio and video to NSData

cocoa, cocoa-touch, file, iphone, objective-c

Solution

For videos since the only thing you have is the URL, yes dataWithContentsofFile is probably the best way to get the data for it.

Problem

I would like to confirm what the recommended ways are to convert audio and video files into NSData objects. Is + dataWithContentsOfFile: the best way to do this?

Original source