LoginSignup
0
0

More than 5 years have passed since last update.

ricohapi/video-streaming-sample-appで音声を出るようにした

Last updated at Posted at 2017-03-28

修正

場所1

- conn.mediaConstraints.audio = false;
+ conn.mediaConstraints.audio = true;

場所2

- conn.session = { audio: false, video: true, oneway: this.isOneWay };
+ conn.session = { audio: true, video: true, oneway: this.isOneWay };

場所3

説明

const conn = new RTCMultiConnection();

conn.mediaConstraints.audio = false;

connection.session

// it is same like "connection.session={audio:false}"
connection.mediaConstraints.audio = false;

Constraintsとは

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0