您通过ffmpeg 1,2,3,4等找到了大量有关视频编码的链接,但它们都是从使用终端命令开始的,但是当我使用终端命令时尝试在终端上实现任何类似:
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];
}];
}
答案 0 :(得分:2)
ffmpeg是AVAssetWriter
框架中的一个过时方法try AVFoundation
。