An open API service indexing awesome lists of open source software.

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

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.