An open API service indexing awesome lists of open source software.

https://github.com/mjiggidy/pyaleparser

Read, and write Avid Log Exchange (.ale) files
https://github.com/mjiggidy/pyaleparser

avid composer editorial edl exchage log media nle pipeline post production shot tape timecode vfx

Last synced: about 2 months ago
JSON representation

Read, and write Avid Log Exchange (.ale) files

Awesome Lists containing this project

README

        

pyaleparser
=====

Yet another python library to read from and write to the ALE (Avid Log Exchange) format.

Development is ongoing an currently unstable. But if you want to give it a shot, be my guest!

```python
from aleparser import Ale

ale = Ale.from_path("MU001.ale")

print(ale.heading)
print(ale.columns)
print(ale.events)

ale.to_path("MU001_processed.ale")
```