Metadata-Version: 2.4
Name: kideo
Version: 0.2.5
Summary: Compress videos to WebM with 240p, 15fps, CRF 28
Author-email: vovota company <vovotacompany@gmail.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# kideo

**kideo** is a Python package for compressing videos using a fast Rust backend.  
It converts input videos to **WebM format** with:

- 📼 Resolution: 240p  
- 🎞️ Frame rate: 15 fps  
- 🎯 CRF (quality): 28  
- 📦 Format: WebM (VP9 + Opus)

The package **bundles FFmpeg** internally, so users don’t need to install it themselves.

---

## 🚀 Installation

```bash
pip install kideo

# use it like this in python

from kideo import compress_video

compress_video("input.mp4", "output.webm")


