gpt4 book ai didi

cocoa - 我的 IKPictureTaker 应用程序收到奇怪的视频警告

转载 作者:行者123 更新时间:2023-12-03 18:06:30 25 4
gpt4 key购买 nike

我有一个简单的小型 osx 应用程序,它只启动 IKPictureTaker,然后将生成的图片保存为 .tiff 文件。一切似乎都工作正常,但每次拍照时我都会反复收到此错误:

2009-11-10 12:25:38.890 Take A Picture[855:9c23] *** QTCaptureSession warning: Session received the following error while decompressing video: Error Domain=NSOSStatusErrorDomain Code=-67441 "Operation could not be completed. (OSStatus error -67441.)". Make sure that the formats of all video outputs are properly configured.

代码非常简单:

- (void)awakeFromNib
{


IKPictureTaker *sharedPictureTaker = [IKPictureTaker pictureTaker];

[sharedPictureTaker setValue:[NSNumber numberWithBool:YES] forKey:IKPictureTakerShowEffectsKey];

[sharedPictureTaker beginPictureTakerWithDelegate:self didEndSelector:@selector(pictureTakerDidEnd:returnCode:contextInfo:) contextInfo:nil];
}


- (void) pictureTakerDidEnd:(IKPictureTaker *) picker
returnCode:(NSInteger) code
contextInfo:(void*) contextInfo
{

NSImage *image = [picker outputImage];
NSString *folder = @"/Users/Mike/Library/Application Support/file.tiff";
folder = [folder stringByExpandingTildeInPath];
[[image TIFFRepresentation] writeToFile:@"~/Library/Application Support/file2.tiff" atomically:NO];
}

最佳答案

听起来您的机器可能存在一些配置问题。你能在另一个人身上测试一下吗?您的应用程序中还有其他情况吗?如果您选择不同类型的图像文件或仅在捕获时会得到相同的结果吗?

您的字符串在编写方法中有点困惑,但除此之外,代码在其他原始应用程序中对我来说工作得很好。

关于cocoa - 我的 IKPictureTaker 应用程序收到奇怪的视频警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1710551/

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