在IOS上使用AVFoundation的庫進行視頻錄制,出現錯誤:
Error Domain=AVFoundationErrorDomain Code=-11823 "無法存儲" UserInfo=0x1782f8a00 {NSUnderlyingError=0x17064f4e0 "The operation couldn’t be completed. (OSStatus error -12672.)", AVErrorRecordingSuccessfullyFinishedKey=false, NSLocalizedRecoverySuggestion=請重試存儲。, NSLocalizedDescription=無法存儲},video.mov -- file:///var/mobile/Applications/D0CA65C7-F218-46F1-80BC-B0FA886EDF3B/Documents/
對於一些英文語言的機器,顯示的是:
Error Domain=AVFoundationErrorDomain Code=-11823 "Cannot Save" UserInfo=0x16fb20 {NSLocalizedRecoverySuggestion=Try saving again., NSLocalizedDescription=Cannot Save}
出現Error Domain=AVFoundationErrorDomain Code=-11823這個錯誤的原因都是需要寫文件,但是文件是存在的。不知道為什麼ios不允許直接覆蓋?在android上,同樣的邏輯沒有任何問題。
知道問題的原因,那麼解決也非常簡單,每次再錄制視頻之前(寫文件之前),檢查文件是否存在,存在則刪除即可:
//如果文件存在,則刪除
if ([[NSFileManager defaultManager] fileExistsAtPath:[documentsDirPath stringByAppendingPathComponent:@"video.mp4"]]) {
NSError *error;
if ([[NSFileManager defaultManager] removeItemAtPath:[documentsDirPath stringByAppendingPathComponent:@"video.mp4"] error:&error] == NO) {
NSLog(@"removeitematpath %@ error :%@", [documentsDirPath stringByAppendingPathComponent:@"video.mp4"], error);
}
}
修改之後,沒有任何問題