High-fidelity audio is essential for professional audio scenarios, such as for podcasts and singing competitions. For example, podcasts require stereo and high-fidelity audio. High-fidelity audio refers to an audio profile with a sample rate of 48 kHz and a bitrate of 192 Kbps.
To obtain high-fidelity audio during real-time communications, you can choose the appropriate audio profile based on the audio quality, channel, and scenario.
Before setting the audio profile, ensure that you have implemented the basic real-time communication functions in your project. See the Quickstart Guides for details:
The Agora SDK provides the setAudioProfile
method to set the appropriate audio profile according to the scenario.
The following diagram shows how to set the audio profile:
You can set the profile and scenario parameters based on the requirements of different applications, such as the audio quality and the audio player.
Parameters | Applications | Options |
---|---|---|
profile | High-fidelity audio | |
Standard audio | ||
No requirement for audio quality | ||
scenario | Prioritize the audio quality and effects | GameStreaming |
Frequently mute/unmute the microphone | ChatRoomEntertainment | |
External audio player | ShowRoom | |
Gaming noise reduction | ChatRoomGaming | |
Stable transmission quality | Default |
You can also set the profile and scenario parameters based on different applications.
Applications | profile | scenario | Features |
---|---|---|---|
One-to-one classroom | Default | Default | Prioritizes the call quality with smooth transmission and high-fidelity audio. |
Battle royale game | SpeechStandard | ChatRoomGaming | Noise reduction and transmits the voice only. Reduces the transmission rate and suitable for multiplayer games. |
Murder mystery game | MusicStandard | ChatRoomEntertainment | High-fidelity audio encoding and decoding. No volume or audio quality change when you mute/unmute the microphone. |
KTV | MusicHighQuality | GameStreaming | High-fidelity audio and effects. Adapts to the high-fidelity audio application. |
Podcast | MusicHighQualityStereo | ShowRoom | High-fidelity audio and stereo panning. Support for professional audio hardware. |
Music education | MusicStandardStereo | GameStreaming | Prioritizes audio quality. Suitable for transmitting live external audio effects. |
Collaborative teaching | MusicStandardStereo | ChatRoomEntertainment | High-fidelity audio and effects. No volume or audio quality change when you mute/unmute the microphone. |
// swift
// Gaming
agoraKit.setAudioProfile(.speechStandard, scenario: .chatRoomGaming)
// Entertainment
agoraKit.setAudioProfile(.musicStandard, scenario: .chatRoomEntertainment)
// KTV
agoraKit.setAudioProfile(.musicHighQuality, scenario: .chatRoomEntertainment)
// FM high-fidelity
agoraKit.setAudioProfile(.musicHighQuality, scenario: .gameStreaming)
// objective-c
// Gaming
[agoraKit setAudioProfile: AgoraAudioProfileSpeechStandard scenario: AgoraAudioScenarioChatRoomGaming];
// Entertainment
[agoraKit setAudioProfile: AgoraAudioProfilemusicStandard, scenario: AgoraAudioScenarioChatRoomEntertainment];
// KTV
[agoraKit setAudioProfile: AgoraAudioProfileMusicHighQuality, scenario: AgoraAudioScenarioChatRoomEntertainment];
// FM high-fidelity
[agoraKit setAudioProfile: AgoraAudioProfilemusicHighQuality, scenario: AgoraAudioScenarioGameStreaming]
Call this method before calling the joinChannelByToken
method.
When you set the volume of a device, you can set either the in-call volume or the media volume.
The differences between the two types of volumes are as follows:
The audio scenarios in the setAudioProfile
method use different volume settings.
Audio scenario | Volume setting |
---|---|
GameStreaming | All users use the media volume. |
Default | |
Education | |
ShowRoom | |
ChatRoomEntertainment | All users use the in-call volume. |
ChatRoomGaming | All users use the in-call volume. |
Given the system restrictions, the media volume can be set as 0, but not the in-call volume. Therefore, if you want to adjust the volume to 0, ensure that you set an audio scenario that uses the media volume.
When setting the audio profile, you can also refer to the following articles: