Metadata-Version: 2.1
Name: video-resizer
Version: 1.3
Summary: A Python package to resize videos without losing quality using FFmpeg
Author: Pratibha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: ffmpeg-python

# Video Resizer

A simple Python package to resize videos without losing quality using FFmpeg. Supports both **command-line interface (CLI)** and **Python** usage.

---

## Installation

```bash
pip install video-resizer

Example: 
video_resizer "input.mp4" "output.mp4" --width 1280 --height 720

-------

Python Usage:

from video_resizer.resizer import resize_with_ffmpeg

resize_with_ffmpeg(
    input_path="input.mp4",
    output_path="output.mp4",
    width=1280,
    height=720
)

------

Requirements:

Python 3.6+
FFmpeg must be installed and accessible from your PATH
