Intel® Collaboration Suite for WebRTC
Community support and discussions on the Intel® Collaboration Suite for WebRTC (Intel® CS for WebRTC).

How to use ExternalStream in 4.x version

tangk
Beginner
329 Views
- Version 3.5: Woogeen.ExternalStream.create ({
            url: url_of_static_mp4_video,
            audio: true,
            video: true
          }, function (err, stream) {
            conference.publish (stream, {}, function (st) {
              L.Logger.info ('stream published:', st.id ());
            }, function (err) {
              L.Logger.error ('publish failed:', err);
            });
          });

- Version: 4.0.2
  ?
0 Kudos
1 Solution
Qiujiao_W_Intel
Employee
329 Views

In 4.0, external stream operations are moved to restful API, you can call restful API to start stream in and out, please refer to chapter 5.4 in restful API document on how to start streaming in.

View solution in original post

0 Kudos
2 Replies
Qiujiao_W_Intel
Employee
330 Views

In 4.0, external stream operations are moved to restful API, you can call restful API to start stream in and out, please refer to chapter 5.4 in restful API document on how to start streaming in.

0 Kudos
tangk
Beginner
329 Views

Thank you Qiujiao W

I found it in the rest api Section 5.4 Streaming-ins.

0 Kudos
Reply