RTCRtpSender.replaceTrack() - Web APIs 编辑

The RTCRtpSender method replaceTrack() replaces the track currently being used as the sender's source with a new MediaStreamTrack. The new track must be of the same media kind (audio, video, etc) and switching the track should not require negotiation.

Among the use cases for replaceTrack() is the common need to switch between the rear- and front-facing cameras on a phone. With replaceTrack(), you can have a track object for each camera and switch between the two as needed. See the example Switching cameras below.

Syntax

trackReplacedPromise = sender.replaceTrack(newTrack);

Parameters

newTrack Optional
A MediaStreamTrack specifying the track with which to replace the RTCRtpSender's current source track. The new track's kind must be the same as the current track's, or the replace track request will fail.

Return value

A Promise which is fulfilled once the track has been successfully replaced. The promise is rejected if the track cannot be replaced for any reason; this is commonly because the change would require renegotiation of the codec, which is not allowed (see Things that require negotiation).

If newTrack was omitted or was null, replaceTrack() stops the sender. No negotiation is required in this case.

When the promise is fulfilled, the fulfillment handler receives a value of undefined.

Exceptions

If the returned promise is rejected, one of the following exceptions is provided to the rejection handler:

InvalidModificationError
Replacing the RTCRtpSender's current track with the new one would require negotiation.
InvalidStateError
The track on which this method was called is stopped rather than running.
TypeError
The new track's kind doesn't match the original track.

Usage notes

Things that trigger negotiation

Not all track replacements require renegotiation. In fact, even changes that seem huge can be done without requiring negotation. Here are the changes that can trigger negotiaton:

  • The new track has a resolution which is outside the bounds of the bounds of the current track; that is, the new track is either wider or taller than the current one.
  • The new track's frame rate is high enough to cause the codec's block rate to be exceeded.
  • The new track is a video track and its raw or pre-encoded state differs from that of the original track.
  • The new track is an audio track with a different number of channels fom the original.
  • Media sources that have built-in encoders — such as hardware encoders — may not be able to provide the negotiated codec. Software sources may not implement the negotiated codec.

Examples

Switching video cameras

// example to change video camera, suppose selected value saved into window.selectedCamera

navigator.mediaDevices
  .getUserMedia({
    video: {
      deviceId: {
        exact: window.selectedCamera
      }
    }
  })
  .then(function(stream) {
    let videoTrack = stream.getVideoTracks()[0];
    PCs.forEach(function(pc) {
      var sender = pc.getSenders().find(function(s) {
        return s.track.kind == videoTrack.kind;
      });
      console.log('found sender:', sender);
      sender.replaceTrack(videoTrack);
    });
  })
  .catch(function(err) {
    console.error('Error happens:', err);
  });

Specifications

SpecificationStatusComment
WebRTC 1.0: Real-time Communication Between Browsers
The definition of 'RTCRtpSender.replaceTrack()' in that specification.
Candidate Recommendation 

Browser compatibility

BCD tables only load in the browser

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:256 次

字数:5996

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文