with tutorial starting services rtcpeerconnection example español stream webrtc media getusermedia

stream - tutorial - Detener/matar la transmisión multimedia de WebRTC



webrtc services (2)

Para todos los navegadores

if (microphone_data.media_stream) { microphone_data.media_stream.getTracks().forEach(function (track) { track.stop(); }); }

¿Cómo matar por completo el flujo de medios WebRTC?

MediaStream.stop () ya no funciona. Prueba en Chrome 47, Mac OS 10.11.


Use stream.getTracks().forEach(track => track.stop()); .

stream.stop() estaba en desuso.