How to use the getTracks function from readable-stream

Find comprehensive JavaScript readable-stream.getTracks code examples handpicked from public code repositorys.

5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
Peer.prototype.addStream = function (stream) {
  var self = this


  self._debug('addStream()')


  stream.getTracks().forEach(function (track) {
    self.addTrack(track, stream)
  })
}

fork icon0
star icon0
watch icon0

+ 5 other calls in file

5567
5568
5569
5570
5571
5572
5573
5574
5575
addStream (stream) {
  if (this.destroying) return
  if (this.destroyed) throw errCode(new Error('cannot addStream after peer is destroyed'), 'ERR_DESTROYED')
  this._debug('addStream()')

  stream.getTracks().forEach(track => {
    this.addTrack(track, stream)
  })
}
fork icon0
star icon0
watch icon1