UZLiveDebug
@interface UZLiveDebug : NSObject
@property (nonatomic, copy) NSString *streamId; /// Stream Id
@property (nonatomic, copy) NSString *uploadUrl; /// Stream URL
@property (nonatomic, assign) CGSize videoSize; /// Video Resolution
@property (nonatomic, assign) BOOL isRtmp; /// Upload method(TCP or RTMP)
@property (nonatomic, assign) CGFloat elapsedMilli; /// Time since last count in ms
@property (nonatomic, assign) CGFloat timeStamp; /// Current timestamp to calculate data within 1s
@property (nonatomic, assign) CGFloat dataFlow; /// Total flow
@property (nonatomic, assign) CGFloat bandwidth; /// Total bandwidth within 1s
@property (nonatomic, assign) CGFloat currentBandwidth; /// Last bandwidth
@property (nonatomic, assign) NSInteger dropFrame; ///< Frames dropped
@property (nonatomic, assign) NSInteger totalFrame; /// Total frames
@property (nonatomic, assign) NSInteger capturedAudioCount; /// Number of audio captures in 1s
@property (nonatomic, assign) NSInteger capturedVideoCount; /// Number of video captures in 1s
@property (nonatomic, assign) NSInteger currentCapturedAudioCount; /// Number of audio captures last time
@property (nonatomic, assign) NSInteger currentCapturedVideoCount; /// Number of last video captures
@property (nonatomic, assign) NSInteger unSendCount; /// Unsent number (representing the current buffer waiting to be sent)
@end
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) NSString *streamId -
Stream Id
Declaration
Objective-C
@property (nonatomic, copy) NSString *uploadUrl; -
Stream URL
Declaration
Objective-C
@property (nonatomic) CGSize videoSize; -
Video Resolution
Declaration
Objective-C
@property (nonatomic) BOOL isRtmp; -
Upload method(TCP or RTMP)
Declaration
Objective-C
@property (nonatomic) CGFloat elapsedMilli; -
Time since last count in ms
Declaration
Objective-C
@property (nonatomic) CGFloat timeStamp; -
Current timestamp to calculate data within 1s
Declaration
Objective-C
@property (nonatomic) CGFloat dataFlow; -
Total flow
Declaration
Objective-C
@property (nonatomic) CGFloat bandwidth; -
Total bandwidth within 1s
Declaration
Objective-C
@property (nonatomic) CGFloat currentBandwidth; -
< Frames dropped
Declaration
Objective-C
@property (nonatomic) NSInteger dropFrame; -
Undocumented
Declaration
Objective-C
@property (nonatomic) NSInteger totalFrame -
Total frames
Declaration
Objective-C
@property (nonatomic) NSInteger capturedAudioCount; -
Number of audio captures in 1s
Declaration
Objective-C
@property (nonatomic) NSInteger capturedVideoCount; -
Number of video captures in 1s
Declaration
Objective-C
@property (nonatomic) NSInteger currentCapturedAudioCount; -
Number of audio captures last time
Declaration
Objective-C
@property (nonatomic) NSInteger currentCapturedVideoCount; -
Number of last video captures
Declaration
Objective-C
@property (nonatomic) NSInteger unSendCount;
UZLiveDebug Class Reference