我试图找到用于压缩电影的编解码器。我确定我是否需要以某种方式使用 CMFormatDescription 并获得一个 CMVideoCodecType 键。我不知道如何通过元数据数组。关于如何检索编解码器的任何想法?
AVURLAsset* movieAsset = [AVURLAsset URLAssetWithURL:sourceMovieURL options:nil];
NSArray *tracks = [movieAsset tracksWithMediaType:AVMediaTypeVideo];
if ([tracks count] != 0) {
AVAssetTrack *videoTrack = [tracks objectAtIndex:0];
//
// Let's get the movie's meta data
//
// Find the codec
NSArray *metadata = [movieAsset commonMetadata];
}
最佳答案
检索与电影关联的音频和视频编解码器的 Swift 方法:
func codecForVideoAsset(asset: AVURLAsset, mediaType: CMMediaType) -> String? {
let formatDescriptions = asset.tracks.flatMap { $0.formatDescriptions }
let mediaSubtypes = formatDescriptions
.filter { CMFormatDescriptionGetMediaType($0 as! CMFormatDescription) == mediaType }
.map { CMFormatDescriptionGetMediaSubType($0 as! CMFormatDescription).toString() }
return mediaSubtypes.first
}
然后,您可以传入电影的
AVURLAsset
以及 kCMMediaType_Video
或 kCMMediaType_Audio
以分别检索视频和音频编解码器。toString()
函数将编解码器格式的 FourCharCode
表示转换为人类可读的字符串,并且可以作为 FourCharCode
的扩展方法提供:extension FourCharCode {
func toString() -> String {
let n = Int(self)
var s: String = String (UnicodeScalar((n >> 24) & 255))
s.append(UnicodeScalar((n >> 16) & 255))
s.append(UnicodeScalar((n >> 8) & 255))
s.append(UnicodeScalar(n & 255))
return s.stringByTrimmingCharactersInSet(NSCharacterSet.whitespaceCharacterSet())
}
}
关于ios - 在iOS下检索电影编解码器?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11194609/