Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 5a30eb5

Browse files
committed
remove getSources usage
fixes #25. Also drive-by description fix on the index page
1 parent dcf8608 commit 5a30eb5

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ <h1>WebRTC test pages</h1>
6666

6767
<p><a href="src/multiple-peerconnections/">Multiple peer connections</a></p>
6868

69-
<p><a href="src/multiple-video/">Multiple video devices</a></p>
69+
<p><a href="src/multiple-video/">Multiple video streams</a></p>
7070

71-
<p><a href="src/multiple-video-devices/">Multiple video streams</a></p>
71+
<p><a href="src/multiple-video-devices/">Multiple video devices</a></p>
7272

7373
<p><a href="src/pause-play/">Randomly pause and play</a></p>
7474

src/multiple-video-devices/js/main.js

+4-8
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,19 @@ window.onload = function() {
1616
};
1717

1818
function getSources_() {
19-
if (typeof MediaStreamTrack.getSources === 'undefined') {
20-
alert('Your browser does not support getSources, aborting.');
21-
return;
22-
}
23-
MediaStreamTrack.getSources(function(devices) {
19+
navigator.mediaDevices.enumerateDevices().then(function(devices) {
2420
for (var i = 0; i < devices.length; i++) {
25-
if (devices[i].kind === 'video') {
21+
if (devices[i].kind === 'videoinput') {
2622
deviceList[i] = devices[i];
27-
requestVideo_(deviceList[i].id);
23+
requestVideo_(deviceList[i].deviceId);
2824
}
2925
}
3026
});
3127
}
3228

3329
function requestVideo_(id) {
3430
navigator.mediaDevices.getUserMedia({
35-
video: {optional: [{sourceId: id}]},
31+
video: {deviceId: {exact: id}},
3632
audio: false}).then(
3733
function(stream) {
3834
getUserMediaOkCallback_(stream);

0 commit comments

Comments
 (0)