Getting video from ALAsset
问题 Using the new asset library framework available in iOS 4 i see that I can get the url for a given video using the UIImagePickerControllerReferenceURL. The url returned is in the following format: assets-library://asset/asset.M4V?id=1000000004&ext=M4V I am trying to upload this video to a website so as a quick proof of concept I am trying the following NSData *data = [NSData dataWithContentsOfURL:videourl]; [data writeToFile:tmpfile atomically:NO]; Data is never initialized in this case. Has