Rendering

@protocol Rendering

Playback analytics related to the player

  • Returns the total number of dropped video frames

    returns: the total number of dropped video frames

    Declaration

    Objective-C

    - (NSInteger)frameDrops;
  • Returns the total number of dropped dived by the length of watched content

    returns: the total number of dropped dived by the length of watched content

    Declaration

    Objective-C

    - (NSInteger)frameDropsPerSecond;
  • Returns the frame rate of the current content as measured during playback.

    returns: the frame rate of the current content as measured during playback.

    Declaration

    Objective-C

    - (NSInteger)framesPerSecond;
  • Returns the frame rate of the current content as announced in the stream. note: This function will make a seperate request for the Master playlist to return all the stream information. This request is only done once you call this function and only on the first time you call it for that contnet. Every subsiquent call on the same content does not requst the playlist again.

    returns: the frame rate of the current content as announced in the stream.

    Declaration

    Objective-C

    - (NSInteger)framesPerSecondNominal;