• 서비스
  • 가격
  • 리소스
  • 기술지원
  • SDK
  • 서버 측 기능 및 API
RTC Engine/
SDK/
Web/
기본 기능/
SDK
  • 개요
    • 개요
    • 제품 소개
      • 기본 개념
      • 제품 기능
      • 성능 데이터
    • 비용
      • 무료시간
      • RTC-Engine 월간 패키지
      • 구독 패키지 기간 과금 설명
      • 사용한 만큼 지불하세요
        • 오디오 및 비디오 기간 과금 설명
        • 클라우드 녹화 및 녹화 전달 과금 설명
        • 혼합 스트림 트랜스코딩 및 리트윗 우회에 대한 과금 설명
        • Billing of Conversational AI Services
        • Billing of Speech-To-Text
  • Demo 실행
  • 완성
  • 기본 기능
    • 화면 공유
    • 라이브 방송
    • 미디어 장치
    • 볼륨
    • 인코딩 구성 파일 설정
    • 네트워크 품질 검사
    • 검출 능력
  • 고급 기능
    • AI 노이즈 캔슬링 활성화
    • 오디오 믹싱 활성화
    • 워터마크 활성화
    • 데이터 메시지
    • 사용자 정의 수집 및 렌더링
  • 인터페이스 목록
  • 일반적인 문제
    • 모든 플랫폼
      • 초보자 FAQ
      • 마이그레이션 가이드
        • Tencent RTC에 대한 Twilio 비디오
        • 결제 관련
        • 기능 관련
        • 사용자 서명 관련
        • 방화벽 제한 사항 처리
        • 설치 패키지 크기 감소와 관련
        • TRTC통화 웹 관련
        • 오디오 및 비디오 품질 관련
        • 기타 질문
    • Web 관련 자주 받는 질문
      • 다중 사용자 비디오 통화 최적화
      • 자동 재생 제한 처리
      • 방화벽 제한 대응
      • 기타
    • 플랫폼 지원
    • 배포 설명
이 페이지는 현재 영어로만 제공되며 한국어 버전은 곧 제공될 예정입니다. 기다려 주셔서 감사드립니다.

볼륨

This tutorial mainly introduces how to detect the volume.
Detect the volume of the local microphone and remote users.
Detect whether the user is speaking after muting microphone.
Adjust local microphone and remote audio volume.

Demo



Dectect Audio Volume

Listen for the TRTC.EVENT.AUDIO_VOLUME event, and then call trtc.enableAudioVolumeEvaluation() to enable the volume event.
trtc.on(TRTC.EVENT.AUDIO_VOLUME, event => {
event.result.forEach(({ userId, volume }) => {
// When userId is an empty string, it represents the volume of the local microphone.
const isMe = userId === '';
if (isMe) {
console.log(`my volume: ${volume}`);
} else {
console.log(`user: ${userId} volume: ${volume}`);
}
})
});

// Enable volume event and trigger the event every 500ms
trtc.enableAudioVolumeEvaluation(500);
// For performance reasons, when the page switches to the background,
// the SDK will not throw volume callback events. If you need to receive volume event
// when the page is switched to the background, you can set the second parameter to true.
trtc.enableAudioVolumeEvaluation(500, true);

// To turn off the volume event, pass in an value less than or equal to 0
trtc.enableAudioVolumeEvaluation(-1);

Detect Whether the User is Speaking after Muting Microphone

const trtc = TRTC.create();
await trtc.startLocalAudio();

let isAudioMuted = false;
await trtc.updateLocalAudio({ mute: true });
isAudioMuted = true;

// create a new trtc instance for detecting the volume of microphone.
const trtcA = TRTC.create();
trtcA.enableAudioVolumeEvaluation();
trtcA.on(TRTC.EVENT.AUDIO_VOLUME, event => {
event.result.forEach(item => {
// 1. userId === '' is local volume.
// 2. It is generally believed that when the volume is greater than 10, the user is talking, and you can also customize this threshold.
if (item.userId === '' && item.volume > 10 && isAudioMuted) {
// The user is speaking after microphone muted.
}
})
})
await trtcA.startLocalAudio();

Adjust Audio Volume

The default local microphone capture volume is 100. You can set the captureVolume parameter of trtc.updateLocalAudio() to adjust it.
// Increase the capture volume by setting captureVolume upper than 100.
await trtc.updateLocalAudio({ option: { captureVolume: 200 }});

// Decrease the capture volume by setting captureVolume below 100.
await trtc.updateLocalAudio({ option: { captureVolume: 50 }});
await trtc.updateLocalAudio({ option: { captureVolume: 0 }});
The default remote audio volume is 100. You can call trtc.setRemoteAudioVolume() to adjust it.
// Increase remote audio volume
await trtc.setRemoteAudioVolume('remote_user_id', 200);
// Decrease remote audio volume
await trtc.setRemoteAudioVolume('remote_user_id', 50);