Retrieving movie codec under iOS?

风格不统一 提交于 2019-11-30 15:35:38

A Swift approach to retrieving the audio and video codec associated with a movie:

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
}

You can then pass in the AVURLAsset of the movie and either kCMMediaType_Video or kCMMediaType_Audio to retrieve the video and audio codecs, respectively.

The toString() function converts the FourCharCode representation of the codec format into a human-readable string, and can be provided as an extension method on 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())
    }
}

I think it's definitely harder than it should be

    #define FourCC2Str(code) (char[5]){(code >> 24) & 0xFF, (code >> 16) & 0xFF, (code >> 8) & 0xFF, code & 0xFF, 0}

    if ([assetTrack.mediaType isEqualToString:AVMediaTypeVideo])
    {
        for (id formatDescription in assetTrack.formatDescriptions)
        {
            NSLog(@"formatDescription:  %@", formatDescription);

            CMFormatDescriptionRef desc = (__bridge CMFormatDescriptionRef)formatDescription;
            //CMMediaType mediaType = CMFormatDescriptionGetMediaType(desc);

            // CMVideoCodecType is typedefed to CMVideoCodecType

            CMVideoCodecType codec = CMFormatDescriptionGetMediaSubType(desc);

            NSString* codecString = [NSString stringWithCString:(const char *)FourCC2Str(codec) encoding:NSUTF8StringEncoding];
            NSLog(@"%@", codecString);

        }
    }

A slightly more readable version of @jbat100's answer (for those who were as confused as I was with that #define FourCC2Str, hah)

// Get your format description from whichever track you want
CMFormatDescriptionRef formatHint;

// Get the codec and correct endianness
CMVideoCodecType formatCodec = CFSwapInt32BigToHost(CMFormatDescriptionGetMediaSubType(formatHint));

// add 1 for null terminator
char formatCodecBuf[sizeof(CMVideoCodecType) + 1] = {0};
memcpy(formatCodecBuf, &formatCodec, sizeof(CMVideoCodecType));

NSString *formatCodecString = @(formatCodecBuf);
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!