I have the following folders in my project
1. fire.py
2.main.py
3.traffic.avi #video file
4. vechile.py
My program main.py imports fire.py and vechile.py and the main program requires this video traffic.avi . Now how do I convert this entire thing into one executable file. I want the entire project to run when the .exe is created. Single file can be converted into exe file using pyinstaller but how do i convert this type of project containing video file and the main.py importing two python files fire.py and vechile.py and
taking input video traffic.avi for processing.