• This project
    • Loading...
  • Sign in

hh_public / HHSDKBase.ios

Logo
Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • HHSDKBase.ios
  • HHMedicSDK
  • TXLiteAVSDK_TRTC.framework
  • Headers
  • TXLiveRecordListener.h
  • init · eb87ac03
    eb87ac03 Browse Files
    chengyanfang authored 2021-04-06 11:07:46 +0800
TXLiveRecordListener.h 382 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
#import "TXLiveRecordTypeDef.h"


/**
 * 短视频录制回调定义
 */
@protocol TXLiveRecordListener <NSObject>
@optional

/**
 * 短视频录制进度
 */
-(void) onRecordProgress:(NSInteger)milliSecond;

/**
 * 短视频录制完成
 */
-(void) onRecordComplete:(TXRecordResult*)result;

/**
 * 短视频录制事件通知
 */
-(void) onRecordEvent:(NSDictionary*)evt;

@end