gpt4 book ai didi

iphone - iOS 6 : AVPlayerItem PresentationSize returning zero - (naturalSize method Deprecated on iOS 5)

转载 作者:搜寻专家 更新时间:2023-10-30 19:54:06 25 4
gpt4 key购买 nike

得到这个代码:

videoSize = [[AVPlayerItem playerItemWithAsset:asset] presentationSize]; 

//nslogs -> 高度:000 宽度 000

这个被弃用了:

videoSize = [asset naturalSize];

//nslogs -> 高度:360 宽度 480

为什么会这样?我不明白。

最佳答案

已解决:

NSArray* allVideoTracks = [movieAsset tracksWithMediaType:AVMediaTypeVideo];
if ([allVideoTracks count] > 0) {
AVAssetTrack* track = [[movieAsset tracksWithMediaType:AVMediaTypeVideo]objectAtIndex:0];
CGSize size = [track naturalSize];
}

这让我很开心,希望它对其他人有用...

关于iphone - iOS 6 : AVPlayerItem PresentationSize returning zero - (naturalSize method Deprecated on iOS 5),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14466842/

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