Batch processing in python.

3.5k Views Asked by At

I am just wondering, is there any way to process multiple videos in one go using a cluster may be? Specifically using python? For example, if I have 50+ videos in a folder and I have to analyze for movement related activity. Assuming I have a code written in python and I have to use that one particular code for the each video. What exactly I want is, instead of analyzing videos one by one (i.e., putting in loop) I need to analyze videos in parallel. Is there any way that I can implement the same?

1

There are 1 best solutions below

0
On

You can do this with multiprocessing or threading. The details can be a bit involved, and since you didn't give any in your question, suggesting the above links is about all I can help.