OBJECT

NearRealTimeDataVideoDecoderInfo

The video decoder information. This represents the output from the video decoder.

link GraphQL Schema definition

  • type NearRealTimeDataVideoDecoderInfo {
  • # The total number of decoded frames.
  • lastDecodedVideoFrameCount: Long
  • # The timecode, in milliseconds, of the last decoded frame.
  • lastDecodedVideoFrameTimecode: Long
  • # The timecode, in millseconds, of the last decoded keyframe.
  • lastDecodedVideoKeyFrameTimecode: Long
  • # The width, in pixels, of the last decoded frame.
  • lastDecodedVideoFrameWidth: Int
  • # The height, in pixels, of the last decoded frame.
  • lastDecodedVideoFrameHeight: Int
  • # The display width, in pixels, of the last decoded frame.
  • lastDecodedVideoFrameDisplayWidth: Int
  • # The display height, in pixels, of the last decoded frame.
  • lastDecodedVideoFrameDisplayHeight: Int
  • # The frame rate, in frames per second, of the last decoded frame.
  • lastDecodedVideoFrameRate: Float
  • }