https://github.com/gill-singh-a/frame-extractor
Extracts each frame of the specified Video File
https://github.com/gill-singh-a/frame-extractor
frame image opencv python python-3 video
Last synced: about 2 months ago
JSON representation
Extracts each frame of the specified Video File
- Host: GitHub
- URL: https://github.com/gill-singh-a/frame-extractor
- Owner: Gill-Singh-A
- Created: 2023-04-10T19:35:53.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-11T03:06:47.000Z (about 3 years ago)
- Last Synced: 2025-01-04T15:41:59.034Z (over 1 year ago)
- Topics: frame, image, opencv, python, python-3, video
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Frame Extractor
Extracts each frame of the specified Video File
## Requirements
Language Used = Python3
Modules/Packages used:
* cv2
* sys
* pathlib
* os
* time
* datetime
* colorama
## Input
It takes input through the command by which we run the python file.
If we specify '*' then it will extract the frames of all the video files present in the folder.
For example:
```bash
python frame_extractor.py *
```
Otherwise we have to specify the file names of the video files that are present in the folder in which the program is run.
For example:
```bash
python frame_extractor.py video_file_1 video_file_2 ...
```
## Output
It will make a new folder with the name "Frames", in the folder "Frames" it will create new folders with name of each video file and extract the frames of respective video file in their respective folders.