RecorderStreamInfo
需录制的音视频流的相关信息。
ArkTS
export class RecorderStreamInfo {
public uid: number = 0;
public channelId: string;
public constructor() {
this.uid = 0;
this.channelId = "";
}
public toString(): string {
return "channelId=" + this.channelId;
}
}
channelId
需录制的频道名称。
uid
需录制的用户 ID。