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
- Host: GitHub
- URL: https://github.com/mjiggidy/pyaleparser
- Owner: mjiggidy
- License: gpl-3.0
- Created: 2024-08-15T03:52:27.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-02-25T02:38:34.000Z (3 months ago)
- Last Synced: 2025-02-25T03:29:56.932Z (3 months ago)
- Topics: avid, composer, editorial, edl, exchage, log, media, nle, pipeline, post, production, shot, tape, timecode, vfx
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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 Aleale = Ale.from_path("MU001.ale")
print(ale.heading)
print(ale.columns)
print(ale.events)ale.to_path("MU001_processed.ale")
```