Click here to Skip to main content
15,920,005 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am done with video recording and also saved the
video to disk but still the webcam light is on.

Any ideas how to turn off webcam?

What I have tried:

I am using RecordRTC plugin but unable to find any method to stop the webcam.
Posted
Updated 27-Mar-18 23:32pm

Hi,

As per me, it should turn off automatically once you stop recording.

If it is not happening so, then please do the cache & cookie clear, refresh the browser, then try again with start/stop recording.

Please let me know if you find the same issue again after doing the above step.
 
Share this answer
 
Try thios one, since stream.stop() is deprecated.

if (stream!= null) {
stream.getTracks().map(function (val) {
val.stop();
});
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900