Skip to content
Advertisement

How to save video as frames in list and process the list of frames simultaneously?

I want to read input from camera and append frame in a list, display the frame from list. The code takes much time to read a frame and display it, after appending into the list.

JavaScript

Advertisement

Answer

As Christoph pointed out, you have an actual infinite loop running in the program, removing it will fix your program.

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement