Can't get multiple images from video using MPMoviePlayerController. OSStatus -12433

前端 未结 3 1012
悲哀的现实
悲哀的现实 2021-01-18 04:19

I\'m trying to extract multiple images from a selected video file using MPMoviePlayerController. Below is the code I have written.

movie = [[MPMoviePlayerCon         


        
3条回答
  •  醉话见心
    2021-01-18 04:22

    I had to add the times as floats so:

    NSNumber *time1 = [NSNumber numberWithFloat:1.f];
    

提交回复
热议问题