I have a Dockerized Python script which is normally run locally as:
python script.py -f path/to/video/file
This code will produce a text file and a directory with images in the directory from which it was run.
So suppose I have this Python script on a Docker container and I use:
docker run container python script.py -f path/to/video/file
Is it possible to specify a local video file and have the output saved locally too?