AgoraMediaPlayerUpdatedInfo
媒体播放器相关信息。
Objective-C
__attribute__((visibility("default"))) @interface AgoraMediaPlayerUpdatedInfo : NSObject
@property(copy, nonatomic) NSString *_Nullable playerId;
@property(copy, nonatomic) NSString *_Nullable deviceId;
@property(strong, nonatomic) AgoraMediaPlayerCacheStatistics *_Nullable cacheStatistics;
@end
playerId
播放器 ID,标识一个播放器。
deviceId
设备 ID,标识一个设备。
cacheStatistics
当前缓存的媒体文件的相关统计数据。
调用 openWithMediaSource
方法且设置 enableCache
成员为 YES
后,当前缓存的媒体文件的相关统计数据会在媒体文件开始播放后每秒更新一次,详见 AgoraMediaPlayerCacheStatistics
。