├── COPYING ├── ChangeLog ├── Makefile.am ├── README ├── README.rst ├── TODO ├── configure.ac ├── data ├── Makefile.am ├── RP210v10-pub-20070121-1600.csv ├── tmrequestbody1.raw └── tmrequestbody2.raw ├── debian ├── changelog ├── compat ├── control ├── copyright └── rules ├── doc ├── Makefile.am └── mxfloader.t2t ├── mxfloader ├── sjmxf ├── Makefile.am ├── __init__.py ├── avid.py ├── common.py ├── parser.py ├── rp210.py.in ├── rp210types.py └── s377m.py └── tests ├── Makefile.am ├── data ├── avid_aaf_definition.raw ├── avid_dataset.raw ├── avid_dataset2.raw ├── avid_metadata_preface.raw ├── avid_object_directory.raw ├── dataset.raw ├── footer_partition.raw ├── header_partition.raw ├── klvfill.raw ├── preface.raw ├── primer.raw └── random_index_metadata.raw ├── test_avid.py ├── test_common.py ├── test_rp210types.py └── test_s377m.py /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/README -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/README.rst -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/TODO -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/configure.ac -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- 1 | dist_pkgdata_DATA = RP210v10-pub-20070121-1600.csv 2 | -------------------------------------------------------------------------------- /data/RP210v10-pub-20070121-1600.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/data/RP210v10-pub-20070121-1600.csv -------------------------------------------------------------------------------- /data/tmrequestbody1.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/data/tmrequestbody1.raw -------------------------------------------------------------------------------- /data/tmrequestbody2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/data/tmrequestbody2.raw -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/debian/rules -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/mxfloader.t2t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/doc/mxfloader.t2t -------------------------------------------------------------------------------- /mxfloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/mxfloader -------------------------------------------------------------------------------- /sjmxf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/sjmxf/Makefile.am -------------------------------------------------------------------------------- /sjmxf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sjmxf/avid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/sjmxf/avid.py -------------------------------------------------------------------------------- /sjmxf/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/sjmxf/common.py -------------------------------------------------------------------------------- /sjmxf/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/sjmxf/parser.py -------------------------------------------------------------------------------- /sjmxf/rp210.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/sjmxf/rp210.py.in -------------------------------------------------------------------------------- /sjmxf/rp210types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/sjmxf/rp210types.py -------------------------------------------------------------------------------- /sjmxf/s377m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/sjmxf/s377m.py -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/data/avid_aaf_definition.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/avid_aaf_definition.raw -------------------------------------------------------------------------------- /tests/data/avid_dataset.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/avid_dataset.raw -------------------------------------------------------------------------------- /tests/data/avid_dataset2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/avid_dataset2.raw -------------------------------------------------------------------------------- /tests/data/avid_metadata_preface.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/avid_metadata_preface.raw -------------------------------------------------------------------------------- /tests/data/avid_object_directory.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/avid_object_directory.raw -------------------------------------------------------------------------------- /tests/data/dataset.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/dataset.raw -------------------------------------------------------------------------------- /tests/data/footer_partition.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/footer_partition.raw -------------------------------------------------------------------------------- /tests/data/header_partition.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/header_partition.raw -------------------------------------------------------------------------------- /tests/data/klvfill.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/klvfill.raw -------------------------------------------------------------------------------- /tests/data/preface.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/preface.raw -------------------------------------------------------------------------------- /tests/data/primer.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/primer.raw -------------------------------------------------------------------------------- /tests/data/random_index_metadata.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/data/random_index_metadata.raw -------------------------------------------------------------------------------- /tests/test_avid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/test_avid.py -------------------------------------------------------------------------------- /tests/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/test_common.py -------------------------------------------------------------------------------- /tests/test_rp210types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/test_rp210types.py -------------------------------------------------------------------------------- /tests/test_s377m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartJog/python-mxf/HEAD/tests/test_s377m.py --------------------------------------------------------------------------------