Sound issues
Products / Plugins:Video Call / Voice Call
Platform / Framework:iOS / Android / macOS / Windows
Last updated:2021-09-26 15:17
1. What should I do if there is no sound during streaming from the iOS applet after OBS streaming?
It can be handled as follows:
- Set the channel in OBS to mono.
- After setting the sound channel, there is sound in the stream, but the sound is abnormal (noise exists), and the sampling rate in OBS needs to be changed to 48K.
2. The web platform only previews the push stream. There is noise/howling when there is no stream. How to deal with it?
Since the local preview does not need to play its own sound, in order to avoid secondary collection of the sound during the preview, the developer needs to add the mute attribute to the video
rendered by the push stream, and set the muted
to "true".
3. There is an audio bitrate in the web platform playQualityUpdate, but there is no sound after the stream is successfully pulled. What is the reason?
Please check whether the video
tag object corresponding to the pull stream is set with the muted
mute attribute. When set to "true", it means mute, and "false" means non-mute.
4. How do I only need to provide audio permissions when streaming on the Web platform?
Use interface configuration: zg.createStream({camera:{audio:true,video:false}})
, so that the push stream will only have audio, and the browser will only ask for the microphone permission.
5. How to mute a certain stream or all streams when pulling a stream?
- Use "setPlayVolume" to pass in the stream name and set the volume to 0 to mute a stream. If you need to mute multiple streams, configure this interface in turn (call after the stream is pulled).
- Use "mutePlayStreamAudio" to pass in the stream name, and set "mute" to "false", so that the remote user's audio data will not be pulled. If you need to mute multiple streams, configure this interface in turn (you can call it before and after the stream is pulled).
- Use "muteSpeaker" to configure mute (off) audio output. After setting mute, all SDK sounds will not be played, including streaming, media player, etc.