ReFrame-CLI is a Python-based command-line tool to streamline your video and image manipulation tasks. Ideal for preparing image datasets for training machine learning models, including generative AI and diffusion models. Can handle videos of any length.
Project description
ReFrame-CLI is a Python-based command-line ImageToolKit to streamline your image manipulation tasks. Ideal for preparing image datasets for training machine learning models, including generative AI and diffusion models. Can handle videos of any length.
Reframe is still in development and we know it needs a lot of improvements, So communities contributions are really appreciated🙇.
Table of Contents
- Features
- Requirements
- Installation
- Usage
- Arguments
- Frame Extraction
- Image Conversion
- Resize Image
- Background Remover
- GIF Creation
- Examples
- Change History
Features
- Frame Extraction: Extracts frames from video files.
- Convert Images: Convert images between multiple formats such as PNG, JPG/JPEG, WEBP, HEIF/HEIC.
- Resize Images: Resize images to desired size/ratio or use the multiplier to just upscale the size of the image.
- Background Remover: Remove background from an image and optionally replace it with a specified color.
- Bulk Support: Convert/Resize images in bulk by just passing the input_path/dir rather than passing them one by one.
- GIF Creation: An additional feature to create Animated GIFs just by stacking up multiple frames(images).
- Cross-Platform: Works on Linux, macOS, and Windows.
Requirements
- Python: 3.7 or higher.
- Dependencies:
- Check out requirements.txt
Installation
Install via pip(Recommended):
By far the easiest way to install and use reframe-cli
pip install reframe-cli
Install from the source(github repo)
- Clone the repository
git clone https://github.com/ForgeL4bs/ReFrame
cd ReFrame
- Create a virtual environment(recommended)
python3 -m venv .venv
source .venv/bin/activate # On Linux/macOS
.venv\Scripts\activate # On Windows
- Install the package in editable mode
pip install -e .
Arguments
In General(Required for all the features)
-input: Input path to any directory or file from where you want to access the files-output: Output path to save the output
Frame Extraction(Optionals)
-f: To specify the output format(Default = png)-fps: To specify the frames_per_second to extract, if not specified then all the frames will be extracted-start:The time (in seconds) from where you want to start the extraction-end: The time (in seconds) till where you want to extract
Image Conversion(Required)
-f: sets the output format (e.g., 'png', 'jpg', 'jpeg', 'webp', 'heic')
Resize Image(Required)
-wh: The width of the resized image-ht: The height of the resized image-ratio:The desired aspect ratio (e.g., 1:1, 3:4).- Note: If you use
-whand-htthen you don't need to specify-ratioand vise versa, since both are for specifying dimension only(just use any one between) and yeah it goes same for-multimultiplier, cause it just multiplies your height width by the number you have specified, or you can say upscaled dimensions by-multi.
Resize Image(Optionals)
-f: Is to specify format of the output image [choices are: png, jpg], if you need any other format, you can just convert it using theconvertfeature.-fp: The focal point for resizing ('left', 'right', 'top', 'bottom', 'center', 'auto'). Defaults to 'auto', which behaves like 'center'.-multi: The resizing multiplier (e.g., 2 for 2x). Overrides width, height, and ratio.
Background Remover(Optionals)
-color: RGB color to replace the background. If None, the background will be transparent.
GIF Creation(Optional)
-d: sets the duration of each frame in the GIF in milliseconds (default: 100ms)- Note: In case of GIF
-outputyou would need to specify the output path along with the.gifextension for the output filefor ex: home/gour4v/output/test.gif
Usage
ReFrame-CLI provides three main functionalities: frame extraction, image conversion, and GIF creation. Use the reframe command to access these features.
-
Frame Extraction
(Extract frames from a video file)
reframe extractf -input <video_path> -output <output_dir> [-f <format>] [-fps <frames_per_second>] [-start <start_time>] [-end <end_time>]
-
Convert image format
(Convert images between multiple formats)
reframe convert -input <input_path> -output <output_dir> -f <format>
-
Resize Image
reframe resize -input <input_path> -output <output_dir> [-wh <width>] [-ht <height>] [-ratio <aspect_ratio>] [-multi <multiplier>] [-f <format>] [-fp <focal_point>]
-
Background Remover
reframe bgremove -input <input_path> -output <output_dir> -color 255,255,255(for white)
-
GIF Creation
(Create animated gifs from images)
reframe gifc -input <input_dir> -output <output_path> [-d <duration>]
Examples
-
Frame Extraction
- Extract all frames from
test.mp4to theoutput_framesdirectory as PNGs:
reframe extractf -input test.mp4 -output output_frames
- Extract frames from
video.mkvto theframesdirectory as JPGs at 10 frames per second:
reframe extractf -input video.mkv -output frames -f jpg -fps 10
- Extract frames within a time range:
reframe extractf -input video.mp4 -output output_frames -start 10 -end 25
-
Image Conversion
- Convert all images in
input_imagesto PNG format and save them inconverted_images:
reframe convert -input input_images -output converted_images -f png
- Convert a single HEIC image to JPG:
reframe convert -input image.heic -output converted_images -f jpg
-
Resize Images
- Resize all images in the
input_imagesdirectory to 800x600 and save them in theresized_imagesdirectory:
reframe resize -input input_images -output resized_images -wh 800 -ht 600
- Resize all images in the
input_imagesdirectory to a3:4aspect ratio along withfocal_pointleft and save them in theresized_imagesdirectory:
reframe resize -input input_images -output resized_images -ratio 3:4 -fp left
-
Background Remover
- Remove Background for a Directory
reframe bgremove -input ./images -output ./bg_removed
- Remove Background and Replace with a slight reddish color
reframe bgremove -input ./images -output ./bg_removed -color 199,74,74
-
GIF Creation
- Create a GIF from images in the
framesdirectory:
reframe gifc -input frames -output animation.gif
- Create a GIF with a custom frame duration (200ms per frame):
reframe gifc -input frames -output animation.gif -d 200
Change History
April 30, 2025
- Release: v1.2.0
- Newly added feature: Background Remover
- Using
rembgandonnxruntimeto remove the background from an image.
April 29, 2025
- Release: v1.1.1
- Added a better progress bar using tqdm
- Removed PIL from image_resizer.py
April 29, 2025
- Latest release of ReFrame-CLI-1.1.0 on pypi
- Added a new feature ~ Image Resizer.
- Fixed some bugs inside Image converter.
April 27, 2025
- Initial release of ReFrame-CLI.
- Added image conversion support for PNG, JPG, WEBP, HEIC, and HEIF formats.
- Added GIF creation functionality.
- Built and deployed to pypi
April 26, 2025
- Added Support to specify a timeline from which you wanna extract frames. Works kind of like trimming the video(same same but different).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file reframe_cli-1.2.0.tar.gz.
File metadata
- Download URL: reframe_cli-1.2.0.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49fd3700e9fd5caea35626637050dbf9392868056cc93dc92f2a7f687ec6a5f4
|
|
| MD5 |
f4847b9cb965e30677787810486c9201
|
|
| BLAKE2b-256 |
cfec23da8365ef229799eaace192506bb685626d309475abfe9be21467dbe67d
|
File details
Details for the file reframe_cli-1.2.0-py3-none-any.whl.
File metadata
- Download URL: reframe_cli-1.2.0-py3-none-any.whl
- Upload date:
- Size: 19.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2afe5da643e244e087a1a405b691ba2d4d8a1cc682c3e5c526c0d07b93a2c73e
|
|
| MD5 |
b2ebd7f3469295fdef721adf3b5cc6b3
|
|
| BLAKE2b-256 |
9c0fe9a4cc3ffef179ae37eca64a5563e4769c868ed40435e0c0db5eda82e9c4
|