gpt4 book ai didi

ios - 如何在 objective-c 中将视频压缩到准确大小?

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:01:33 27 4
gpt4 key购买 nike

可能你们中的大多数人都在使用 WhatsApp,并且您可能知道,当您想将视频发送给您的联系人之一时,WhatsApp 首先会将视频压缩到最大 16mb 的大小,然后才会将所选视频上传给您的联系人。

我正在尝试做的是使用 AV Foundation 或更具体的 AVAssetExportSession 做同样的事情。

这是我的代码:

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {



NSURL *videoURL = info[UIImagePickerControllerMediaURL];
NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *sourcePath =[documentsDirectory stringByAppendingString:@"/output.mov"];
NSURL *outputURL = [NSURL fileURLWithPath:sourcePath];

[self convertVideoToLowQuailtyWithInputURL:videoURL outputURL:outputURL handler:^(AVAssetExportSession *exportSession)
{
if (exportSession.status == AVAssetExportSessionStatusCompleted)
{
NSLog(@"completed");
}
else
{
NSLog(@"error: %@",exportSession.error);
}
}];

[picker dismissViewControllerAnimated:YES completion:NULL];
}

- (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:AVAssetExportPresetMediumQuality];
exportSession.outputURL = outputURL;
exportSession.outputFileType = AVFileTypeQuickTimeMovie;

[exportSession exportAsynchronouslyWithCompletionHandler:^(void)
{
handler(exportSession);
}];

}

这段代码效果很好,它把视频压缩成非常小的尺寸。

问题是当用户尝试上传一个很长的视频时,带有强大的相机,但尺寸对我来说不够小。

我想做的实际上是将任何视频压缩到有限大小让我们说例如像 WhatsApp 那样的 16Mb。我该怎么做?

最佳答案

它似乎不存在一种简单的方法,但 AVAssetExportSession 有一个估计的 OutputFileLenght 可以提供帮助。
在我的代码中,我遍历不同的质量并检查文件大小是否在我想要的大小内:

NSURL * inputURL = [NSURL fileURLWithPath:path];
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:inputURL options:nil];
AVAssetExportSession *exportSession = nil;
for (NSString * string in @[AVAssetExportPresetHighestQuality,AVAssetExportPresetMediumQuality,AVAssetExportPresetLowQuality]) {
exportSession = [[AVAssetExportSession alloc] initWithAsset:asset presetName:string];
exportSession.shouldOptimizeForNetworkUse = YES;
exportSession.outputFileType = AVFileTypeMPEG4;
exportSession.timeRange = CMTimeRangeMake(kCMTimeZero, asset.duration);
unsigned long long espectedFileSize = exportSession.estimatedOutputFileLength;
if (espectedFileSize < VIDE_LIMIT) {
break;
}

}
//Temp file

NSString *fileName = [NSString stringWithFormat:@"%@_%@", [[NSProcessInfo processInfo] globallyUniqueString], @"video.mov"];
NSString * filePath = [NSTemporaryDirectory() stringByAppendingPathComponent:fileName];
NSURL *fileURL = [NSURL fileURLWithPath:filePath];
exportSession.outputURL = fileURL;
[exportSession exportAsynchronouslyWithCompletionHandler:^(void)

关于ios - 如何在 objective-c 中将视频压缩到准确大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29607943/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com