- Notifications
You must be signed in to change notification settings - Fork1
A Python CLI program to extract frames of videos.
License
NotificationsYou must be signed in to change notification settings
vccolombo/pyctorize
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A Python command line program to extract frames of videos
python3 -m pip install pyctorize
$pyctorize<PATH_TO_FILE> \ --output <PATH_TO_OUTPUT_DIRECTORY> \ --start-time <TIME_IN_MILLISECONDS_OF_FIRST_FRAME> \ --step <CAPTURE_IMAGE_EVERY_STEP_MILLISECONDS>
Example:
$pyctorize example.mp4 \ --output output/ \ # save result to output/ --start-time 100 \ # starting at 100ms --step 1000 # take a frame every second
In this example, pyctorize will produce a frame for 1100ms, 2100ms, 3100ms and so on.
- Víctor Colombo -vccolombo
This project is licensed under the MIT License - see theLICENSE file for details
About
A Python CLI program to extract frames of videos.