2

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

  1. UIVIdeoEditorcontrollerを使用するチュートリアルのリンクを教えてください
4

2 に答える 2

1

を介してパスごとにビデオの編集を見つけることができます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

于 2015-06-13T09:54:15.760 に答える