FFMPEG for iPhone录制视频编码

时间:2011-12-16 06:52:53

标签: iphone ffmpeg video-encoding

您通过ffmpeg 1234等找到了大量有关视频编码的链接,但它们都是从使用终端命令开始的,但是当我使用终端命令时尝试在终端上实现任何类似:

  

git clone git://github.com/lajos/iFrameExtractor.git it says that -bash:git:command not found。

另据我所知,无法在iPhone上使用终端命令。任何人都可以指出如何编码以mp4格式通过ffmpeg录制的视频,并减少视频的大小吗?提前感谢。

编辑: 我已经实现了这个方法来调整我的视频大小并且它成功发生了,我能够在服务器上发送视频,但是在服务器端,它在检索数据和使用它时遇到了问题。

- (void)imagePickerController:(UIImagePickerController *)picker 
didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    [self convertVideoToLowQuailtyWithInputURL:videoURL1 outputURL:[NSURL fileURLWithPath:videoStoragePath] handler:^(AVAssetExportSession *exportSession)
     {
         if (exportSession.status == AVAssetExportSessionStatusCompleted)
         {
             NSLog(@"%@",exportSession.error);
             printf("completed\n");
         }
         else
         {
             NSLog(@"%@",exportSession.error);
             printf("error\n");
         }
     }];
}

- (void)convertVideoToLowQuailtyWithInputURL:(NSURL*)inputURL 
                                   outputURL:(NSURL*)outputURL 
                                     handler:(void (^)(AVAssetExportSession*))handler
{
    [[NSFileManager defaultManager] removeItemAtURL:outputURL error:nil];
    AVURLAsset *asset = [AVURLAsset URLAssetWithURL:inputURL options:nil];
    AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:asset presetName:AVAssetExportPresetLowQuality];
    exportSession.outputURL = outputURL;
    exportSession.outputFileType = AVFileTypeQuickTimeMovie;
    [exportSession exportAsynchronouslyWithCompletionHandler:^(void) 
     {
         handler(exportSession);
         [exportSession release];
     }];
}

1 个答案:

答案 0 :(得分:2)

ffmpeg是AVAssetWriter框架中的一个过时方法try AVFoundation