语音流畅度
This commit is contained in:
parent
d6e9de24bf
commit
715ee0be43
|
|
@ -3511,7 +3511,7 @@ const Meeting: React.FC = () => {
|
|||
key={rowIndex}>
|
||||
<label>
|
||||
<img src={row.active ? row.iconActive : row.icon} alt="" />
|
||||
{!row.active ? <div style={{ backgroundImage: `url(${ImageUrl.icon49})` }} id={`micr-item-${userInfo.uid}`}>
|
||||
{!row.active ? <div style={{ backgroundImage: `url(${ImageUrl.icon49})`, transition: '0.18s' }} id={`micr-item-${userInfo.uid}`}>
|
||||
</div> : ''}
|
||||
</label>
|
||||
<span>{row.title}</span>
|
||||
|
|
@ -3686,7 +3686,7 @@ const meetingContentUser = (item: any, bool?: boolean) => {
|
|||
bool ? !item.enableMicr ? <img src={item.enableMicr ? ImageUrl.icon22 : ImageUrl.icon22Active} alt="" /> : '' :
|
||||
<label>
|
||||
<img src={item.enableMicr ? ImageUrl.icon22 : ImageUrl.icon22Active} alt="" />
|
||||
{item.enableMicr ? <div style={{ backgroundImage: `url(${ImageUrl.icon49})` }} id={`micr-${item.uid}`}>
|
||||
{item.enableMicr ? <div style={{ backgroundImage: `url(${ImageUrl.icon49})`, transition: '0.18s' }} id={`micr-${item.uid}`}>
|
||||
</div> : ''}
|
||||
</label>
|
||||
}
|
||||
|
|
|
|||
|
|
@ -293,7 +293,7 @@ export const agora = {
|
|||
},
|
||||
// 加入频道
|
||||
joinChannel: async () => {
|
||||
await rtcEngine.enableAudioVolumeIndication(100, 3, true)
|
||||
await rtcEngine.enableAudioVolumeIndication(200, 3, true)
|
||||
await rtcEngine.joinChannel(option.token, option.channelId, option.uid);
|
||||
await rtcEngine.setDualStreamModeEx(
|
||||
SimulcastStreamMode.EnableSimulcastStream,
|
||||
|
|
|
|||
Loading…
Reference in New Issue