This repository was archived by the owner on May 13, 2024. It is now read-only.
File tree 2 files changed +6
-10
lines changed
src/multiple-video-devices/js
2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -66,9 +66,9 @@ <h1>WebRTC test pages</h1>
66
66
67
67
< p > < a href ="src/multiple-peerconnections/ "> Multiple peer connections</ a > </ p >
68
68
69
- < p > < a href ="src/multiple-video/ "> Multiple video devices </ a > </ p >
69
+ < p > < a href ="src/multiple-video/ "> Multiple video streams </ a > </ p >
70
70
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 >
72
72
73
73
< p > < a href ="src/pause-play/ "> Randomly pause and play</ a > </ p >
74
74
Original file line number Diff line number Diff line change @@ -16,23 +16,19 @@ window.onload = function() {
16
16
} ;
17
17
18
18
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 ) {
24
20
for ( var i = 0 ; i < devices . length ; i ++ ) {
25
- if ( devices [ i ] . kind === 'video ' ) {
21
+ if ( devices [ i ] . kind === 'videoinput ' ) {
26
22
deviceList [ i ] = devices [ i ] ;
27
- requestVideo_ ( deviceList [ i ] . id ) ;
23
+ requestVideo_ ( deviceList [ i ] . deviceId ) ;
28
24
}
29
25
}
30
26
} ) ;
31
27
}
32
28
33
29
function requestVideo_ ( id ) {
34
30
navigator . mediaDevices . getUserMedia ( {
35
- video : { optional : [ { sourceId : id } ] } ,
31
+ video : { deviceId : { exact : id } } ,
36
32
audio : false } ) . then (
37
33
function ( stream ) {
38
34
getUserMediaOkCallback_ ( stream ) ;
You can’t perform that action at this time.
0 commit comments