How to get list RESOLUTION m3u8 file?

Hello @RockLee,

See https://github.com/kaltura/server/blob/Orion-15.20.0/alpha/apps/kaltura/lib/kManifestRenderers.php#L961

You can get the flavours (different renditions) per Kaltura entry by calling flavorasset.list(), with the entryIdEqual filter member, see https://developer.kaltura.com/console/service/flavorAsset/action/list.

Here’s a sample response:

KalturaFlavorAsset
        flavorParamsId  4
        width   960
        height  540
        bitrate 728
        frameRate       29.97
        isOriginal
        isWeb   1
        containerFormat isom
        videoCodecId    avc1
        status  2
        language        Undefined
        isDefault
        id      0_hkv2wvyu
        entryId 0_0qvydshp
        partnerId       103
        version 2
        size    3328
        tags    mobile,web,mbr,ipad,ipadnew,iphone,iphonenew,dash
        fileExt mp4
        createdAt       1583316176      (2020-03-04 10:02:56)
        updatedAt       1583316286      (2020-03-04 10:04:46)
        description     audio warnings: 2106,#Redundant bitrate.

You may also find https://developer.kaltura.com/api-docs/Deliver-and-Distribute-Media/playManifest-streaming-api.html interesting.
Thanks,

Hi jess,
I have the same question on iOS, I have researched Playkit’s code but still can’t find any function or attribute to return a list of screen resolutions, can you help me? thanks