Browse Source

Examples: Fix stream handling in webgl_materials_video_webcam

Mugen87 7 năm trước cách đây
mục cha
commit
0da18fa935
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      examples/webgl_materials_video_webcam.html

+ 1 - 1
examples/webgl_materials_video_webcam.html

@@ -108,7 +108,7 @@
 
 							// apply the stream to the video element used in the texture
 
-							video.src = window.URL.createObjectURL( stream );
+							video.srcObject = stream;
 							video.play();
 
 					} ).catch( function( error ) {