Are there any libraries in python that allow the input of a video file and then output 4 equal quadrants of that video files (eg: top left, top right, bottom left, bottom right)?
At the moment I have only seen examples that split the video in terms of length (eg: a 20 minute video into 5 minute sections)
I know its probably possible by using something like opencv to split the video into frames and then split each frame into 4 and the make the individual frames back into the video but I think this is very resource hungry and not the most efficient solution.
Any suggestions or examples will be appreciated.