ビデオをトリミングしたいので、UIVideoEditorController を使用していますが、ファイルを編集できることを確認すると、すべてのファイル mp4、mov、m4v に対して false が返されます。だから、誰でも私に何が問題なのか教えてください。
- UIVIdeoEditorcontrollerを使用するチュートリアルのリンクを教えてください
ビデオをトリミングしたいので、UIVideoEditorController を使用していますが、ファイルを編集できることを確認すると、すべてのファイル mp4、mov、m4v に対して 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