voxeet / voxeet-uxkit-cordova

Dolby.io UXKit for Cordova
Other
1 stars 14 forks source link

Video does not always appear after 1.4.6 update SDK 3.0.3 #43

Closed feded closed 2 years ago

feded commented 3 years ago

Video calls are inconsistent. The video is not always shown on a peer to peer call with defaultVideo set to true.

Expected Behaviour

Video should be shown on both peers after creating and joining a call.

Minimalistic code (recommended)

//Caller: 
Voxeet.defaultBuiltInSpeaker(true)
                    .then(() => Voxeet.defaultVideo(true))
                    .then(() => Voxeet.create({conferenceAlias: this.conferenceId, alias: this.conferenceId}))
                    .then((conference) => { //notify opponent
 })

//Opponent: 
Voxeet.defaultBuiltInSpeaker(true)
                .then(() => Voxeet.defaultVideo(true))
                .then(() => Voxeet.join(voxeetConferenceId)
                    .then((call) => { 
                    // do stuff
})

Specifications

codlab commented 3 years ago

The 1.4.7-BETA2 should address this part (as well as other sdk related fixes)

feded commented 3 years ago

Hi @codlab, this is also happening on the 1.4.7-BETA2 version. No exceptions are thrown.

FabienLavocat commented 2 years ago

Closing this issue, if this is still happening with the latest version of the SDK, please open a new ticket.