Metadata-Version: 2.4
Name: process-videos
Version: 0.2.3
Summary: Batch video processor with audio normalization and ffmpeg compression
Home-page: https://github.com/Obadowski/process-videos
Author: Vinicius Obadowski
Author-email: you@example.com
Project-URL: Bug Tracker, https://github.com/Obadowski/process-videos/issues
Project-URL: Source Code, https://github.com/Obadowski/process-videos
Keywords: ffmpeg video audio batch normalization cli loudnorm
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: imageio-ffmpeg
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Process Videos

CLI tool for batch processing narrated videos: extracts audio, applies loudness normalization using `ffmpeg`, and recompresses using H.264 or H.265. Great for presentations, voice-over recordings, and tutorials.

## Installation

```bash
pip install .
```

## Usage

```bash
process-videos --dir ./videos
```

Optional parameters:
- `--codec`: libx264 or libx265
- `--crf`: Compression factor (default: 28)
- `--preset`: Encoder preset (default: veryfast)
- `--audio-bitrate`: e.g. 128k


# Changelog

## [0.2.3] - 2025-04-01
### Added
- Developer name and some minor data to Github profile and repo

## [0.2.2] - 2025-04-01
### Added
- Fallback to `imageio-ffmpeg` when `ffmpeg` is not available in system PATH
- Automatic CLI setup via setuptools entry_points
- Makefile and publish.sh for simplified publishing workflow

### Changed
- All CLI messages and structure translated to English
- Improved error handling and tool suggestions

---

## [0.2.1] - 2025-03-31
### Fixed
- Audio normalization artifacts from previous version

### Changed
- Switched to `ffmpeg loudnorm` filter for better voice quality

---

## [0.2.0] - 2025-03-30
### Added
- Batch video/audio processing tool using `click`
- ffmpeg-based audio normalization
- Video compression with CRF and preset options
