RecorderStreamInfo
The information about the media streams to be recorded.
struct RecorderStreamInfo {
const char* channelId;
uid_t uid;
RecorderStreamType type;
RecorderStreamInfo() : channelId(NULL), uid(0), type(RTC) {}
RecorderStreamInfo(const char* channelId, uid_t uid)
: channelId(channelId), uid(uid), type(RTC) {}
RecorderStreamInfo(const char* channelId, uid_t uid, RecorderStreamType)
: channelId(channelId), uid(uid), type(RTC) {}
};
- Since
- v4.2.0
Attributes
- channelId
- The name of the channel in which the media streams publish.
- uid
- The ID of the user whose media streams you want to record.