Создавайте только аудиовызовы с помощью OpenVidu
Мне нужны только аудиовызовы без использования веб-камеры. Но следующий код работает только с разрешением камеры. Когда я удалил разрешение камеры, он не вызвал событие streamCreated.
const publisher: Publisher = this.OV.initPublisher(undefined, {
audioSource: undefined, // The source of audio. If undefined default microphone
videoSource: undefined, // The source of video. If undefined default webcam
publishAudio: true, // Whether you want to start publishing with your audio unmuted or not
publishVideo: false, // Whether you want to start publishing with your video enabled or not
resolution: '640x480', // The resolution of your video
frameRate: 30, // The frame rate of your video
insertMode: 'APPEND', // How the video is inserted in the target element 'video-container'
mirror: true // Whether to mirror your local video or not
});
Я использую Ionic для приложения Android
2 ответа
Вам нужно установить 'videoSource' в 'false', а не 'undefined'. Примерно так должно работать:
const publisher: Publisher = this.OV.initPublisher(undefined, {
audioSource: undefined, // The source of audio. If undefined default microphone
videoSource: false, // The source of video. If undefined default webcam
publishAudio: true, // Whether you want to start publishing with your audio unmuted or not
publishVideo: false, // Whether you want to start publishing with your video enabled or not
resolution: '640x480', // The resolution of your video
frameRate: 30, // The frame rate of your video
insertMode: 'APPEND', // How the video is inserted in the target element 'video-container'
mirror: true // Whether to mirror your local video or not
});
videoSource: false,
также размещено здесь https://openvidu.discourse.group/t/audio-only-sessions/55