2024-09-03 14:50:23 +00:00
|
|
|
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/jodhus/pyebur128/run-tests.yml?branch=main)
|
2021-03-25 19:44:01 +00:00
|
|
|
[![codecov](https://codecov.io/gh/jodhus/pyebur128/branch/master/graph/badge.svg?token=TLA2NXMEF4)](https://codecov.io/gh/jodhus/pyebur128)
|
|
|
|
![GitHub](https://img.shields.io/github/license/jodhus/pyebur128)
|
|
|
|
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyebur128)
|
|
|
|
![PyPI](https://img.shields.io/pypi/v/pyebur128)
|
|
|
|
|
|
|
|
|
2021-03-21 23:32:02 +00:00
|
|
|
# pyebur128
|
2021-03-25 20:42:04 +00:00
|
|
|
A Cython implementation of the [libebur128](https://github.com/jiixyj/libebur128) library for audio loudness in media files.
|
|
|
|
|
|
|
|
## Requirements
|
|
|
|
|
|
|
|
* Operating Systems: Linux, macOS, or Windows
|
2024-09-03 14:50:23 +00:00
|
|
|
* Python: 3.8+
|
2021-03-25 20:42:04 +00:00
|
|
|
* Dependencies: None!
|
2021-03-21 23:59:39 +00:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2021-03-25 20:42:04 +00:00
|
|
|
### PyPI
|
|
|
|
|
|
|
|
```
|
|
|
|
pip install pyebur128
|
|
|
|
```
|
|
|
|
|
|
|
|
### From Source
|
2021-03-21 23:59:39 +00:00
|
|
|
|
|
|
|
```
|
2021-03-25 20:42:04 +00:00
|
|
|
git clone --recurse-submodules https://github.com/jodhus/pyebur128
|
|
|
|
cd pyebur128
|
|
|
|
pip install .
|
2021-03-21 23:59:39 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## TODO
|
2021-03-25 20:42:04 +00:00
|
|
|
* Working on getting official documentation written/uploaded. In the meantime, all definitions are documented in within their docstrings.
|