github twilio/twilio-video.js 2.8.0

latest releases: 2.8.2-rc1, 2.28.2-rc1, 2.28.1...
3 years ago

2.8.0 (November 20, 2020)

New Features

  • Enabled discontinuous transmission (DTX) in the Opus audio codec by default, which will result in bandwidth and CPU savings during silence and background noise. You can control this feature using the ConnectOptions property preferredAudioCodecs. (JSDK-3022)

    const { connect } = require('twilio-video');
    
    // Disable DTX for Opus.
    connect('token', {
      preferredAudioCodecs: [{ codec: 'opus', dtx: false }]
    });

Bug Fixes

  • Fixed a bug where Chrome Participants failed to restart a LocalAudioTrack or LocalVideoTrack on some android devices. (JSDK-3003)
  • Fixed a bug where sometimes Tracks that were added in quick succession were not published due to a race condition. (JSDK-2807)

Don't miss a new twilio-video.js release

NewReleases is sending notifications on new releases.