Recent release breaks audio-only RTC streaming

Max

Administrator
Staff member
Thanks for the report.
We have reproduced issue with latest builds 2921 and 2948.
We will inform you via this thread once we have any updates.
 

Max

Administrator
Staff member
Workaround: specify constrains for playback and set video to false
Code:
playedStream = session.createStream({
    name: streamName,
    display: remoteVideo,
    constraints : {
        audio: true,
        video: false,
    }
});
 
Top