Video Reading Problem in Published Docker conatiner

My Python program reads videos correctly when I run it directly from the vscode IDE, but I encounter issues when attempting to read videos using a published Docker container. How can this problem be resolved?

Command line using vscode terminal:
PS C:\projects\ifap\decoder> & c:/projects/ifap/decoder/ifap_decoder_venv/Scripts/python.exe c:/projects/ifap/decoder/ifap_decoder.py .\input_videos\08fd33_4.mp4

Command line to build the image:
docker build --platform=“linux/amd64” -t ifap_decoder:latest .

Command line to run the container:
docker run -it -v C:\projects\ifap\decoder\input_videos:/app/input_videos ifap_decoder:latest /app/input_videos/08fd33_4.mp

Thanks,