Metadata-Version: 2.4
Name: mediautils
Version: 0.1.0
Summary: A small toolbox of utilities for managing photo and video files.
Project-URL: Repository, https://github.com/francois-durand/mediautils
Project-URL: Documentation, https://francois-durand.github.io/mediautils
Author-email: François Durand <fradurandpub@gmail.com>
Maintainer-email: François Durand <fradurandpub@gmail.com>
License-Expression: MIT
License-File: AUTHORS.md
Requires-Python: >=3.11
Requires-Dist: click>=8.1.8
Requires-Dist: exif>=1.6.0
Requires-Dist: moviepy>=2.0.0
Requires-Dist: pillow>=11.0.0
Description-Content-Type: text/markdown

# Media Utils


[![PyPI Status](https://img.shields.io/pypi/v/mediautils.svg)](https://pypi.python.org/pypi/mediautils)
[![Build Status](https://github.com/francois-durand/mediautils/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/francois-durand/mediautils/actions?query=workflow%3Abuild)
[![Documentation Status](https://github.com/francois-durand/mediautils/actions/workflows/docs.yml/badge.svg?branch=main)](https://github.com/francois-durand/mediautils/actions?query=workflow%3Adocs)
[![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Code Coverage](https://codecov.io/gh/francois-durand/mediautils/branch/main/graphs/badge.svg)](https://codecov.io/gh/francois-durand/mediautils/tree/main)
[![SWH](https://archive.softwareheritage.org/badge/origin/https://github.com/YOUR_USERNAME/YOUR_REPO/)](https://archive.softwareheritage.org/browse/origin/?origin_url=https://github.com/YOUR_USERNAME/YOUR_REPO)

A small toolbox of utilities for managing photo and video files.


- Free software: MIT
- Documentation: <https://francois-durand.github.io/mediautils/>.
- Github: <https://github.com/francois-durand/mediautils>


## Features

- Update metadata from standardized file name, and vice-versa.
- Sort photos depending on orientation.

## Quickstart

Install Media Utils:

```console
$ pip install mediautils
```

Use Media Utils in a Python project:

```pycon
>>> from mediautils import MyClass1
>>> my_object = MyClass1(a=5, b=3)
>>> my_object.addition()
8
```

## Credits

This package was created with [Cookiecutter][CC] and the [Package Helper 3][PH3] project template.

[CC]: <https://github.com/audreyr/cookiecutter>
[PH3]: <https://balouf.github.io/package-helper-3/>
