我想修剪視頻,所以我使用UIVideoEditorController,但是當我檢查可以編輯文件,然後它返回所有文件,mp4,mov,m4v的false。所以任何人都會請指導我什麼是問題。使用UIVideoEditorController編輯視頻
- 請你給我用UIVIdeoEditorcontroller
我想修剪視頻,所以我使用UIVideoEditorController,但是當我檢查可以編輯文件,然後它返回所有文件,mp4,mov,m4v的false。所以任何人都會請指導我什麼是問題。使用UIVideoEditorController編輯視頻
UIVideoEditorController模擬器上不工作,所以它總是返回false,它完全可以在設備精細的任何教程的鏈接。
您可以通過UIVideoEditorController
找到編輯視頻的路徑。
UIVideoEditorController* videoEditor = [[UIVideoEditorController alloc] init];
videoEditor.delegate=self;
NSString* videoPath = [[NSBundle mainBundle] pathForResource:@"video" ofType:@"MOV"];
if ([UIVideoEditorController canEditVideoAtPath:videoPath])
{
videoEditor.videoPath = videoPath;
videoEditor.videoMaximumDuration = 10.0;
//[self.customAvPlayerView addSubview:videoEditor.view];
[self presentViewController:videoEditor animated:YES completion:nil];
}
else
{
NSLog(@"can't edit video at %@", videoPath);
}
http://www.raywenderlich.com/forums/viewtopic.php?t=11571&p=60182