This project is a Python-based tool that converts videos to images. For each video in the "video" folder, it extracts frames and saves them as images in a corresponding directory within the "image" folder.
- Clone this repository:
git clone https://github.com/yourusername/video-to-image-converter.git
- Navigate to the project directory:
cd video-to-image-converter
- Install the required dependencies:
pip install opencv-python
- Ensure your videos are in the "video" folder.
- Double-click the
Start me.bat
file or run it from the command line:Start me.bat
- The extracted images will be saved in the "image" folder, organized by video file name.
video/
├── video1.mp4
├── video2.mp4
image/
├── video1/
│ ├── 0_42.jpg
│ ├── 1_42.jpg
│ └── ...
└── video2/
├── 0_56.jpg
├── 1_56.jpg
└── ...