A python module for reading and writing Avid Bin Files (AVB) files. Forked from https://github.com/markreidvfx/pyavb
Modified to include an ability to export AVB files to comma separated value (CSV)
This project is in no way affiliated, nor endorsed in any way with Avid, and their name and all product names are registered brand names and trademarks that belong to them.
- Python >= 2.7
- Ubuntu 22.04+
clone the latest development git master:
git clone https://github.com/rdamus/pyavb cd pyavb python setup.py install
I installed conda
to manage the environment per This guide
Create a conda environment:
conda create -n pyavb
Activate the environment:
conda activate pyavb
Setup the PYTHON_PATH
:
export PYTHONPATH=$PYTHONPATH:/path/to/pyavb/src:/path/to/pyavb/src/avb
The following will produce a csv file of the avb input file, filename.avb
:
pyavb/examples/python avb2csv.py filename.avb
The output CSV file will be produced in the same directory and is named data-YYYMMddTHHmmss.csv
Documentation is available on Read the Docs.