RBSDKPlayerMediaInfo

@interface RBSDKPlayerMediaInfo : NSObject

Class to retrieve information about a media

  • Stream id assigned in the Rhinobird dashboard.

    Declaration

    Objective-C

    @property (nonatomic, weak, readonly, nullable) NSString *streamId;

    Swift

    weak var streamId: NSString? { get }
  • Reel id assigned in the Rhinobird dashboard.

    Declaration

    Objective-C

    @property (nonatomic, weak, readonly, nullable) NSString *reelId;

    Swift

    weak var reelId: NSString? { get }
  • Caption (title) of the stream.

    Declaration

    Objective-C

    @property (nonatomic, weak, readonly, nullable) NSString *caption;

    Swift

    weak var caption: NSString? { get }
  • Dictionary with other useful information. e.g. referenceId.

    Declaration

    Objective-C

    @property (nonatomic, weak, readonly, nullable) NSDictionary *otherParameters;

    Swift

    weak var otherParameters: NSDictionary? { get }