ALAssetLibrary メソッド writeVideoAtPathToSavedPhotosAlbum でビデオを保存しようとすると、ビデオは AssetLibrary によって生成される名前で保存されます。
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library writeVideoAtPathToSavedPhotosAlbum:tempURL
completionBlock:^(NSURL *assetURL, NSError *error)
{
if(error)
{
}
else
{
NSLog(@"Saved video at %@\n", [assetURL path]);
}
}];
[library release], library = nil;