├── .gitignore ├── CHANGELOG ├── LICENSE ├── MANIFEST ├── MANIFEST.in ├── README ├── README.md ├── dist ├── edl-0.1.1.zip ├── edl-0.1.2.win32.zip ├── edl-0.1.2.zip └── edl-0.1.zip ├── edl └── __init__.py ├── setup.py └── tests ├── __init__.py ├── test_data ├── test.edl ├── test_2398.edl ├── test_2398psf.edl ├── test_24.edl ├── test_24psf.edl ├── test_25.edl ├── test_2997DF.edl ├── test_2997NDF.edl ├── test_50.edl ├── test_5994DF.edl └── test_5994NDF.edl ├── test_effect_matcher.py ├── test_list.py ├── test_parser.py ├── test_timewarp.py └── test_title_matcher.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/README.md -------------------------------------------------------------------------------- /dist/edl-0.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/dist/edl-0.1.1.zip -------------------------------------------------------------------------------- /dist/edl-0.1.2.win32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/dist/edl-0.1.2.win32.zip -------------------------------------------------------------------------------- /dist/edl-0.1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/dist/edl-0.1.2.zip -------------------------------------------------------------------------------- /dist/edl-0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/dist/edl-0.1.zip -------------------------------------------------------------------------------- /edl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/edl/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | -------------------------------------------------------------------------------- /tests/test_data/test.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_data/test.edl -------------------------------------------------------------------------------- /tests/test_data/test_2398.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_data/test_2398.edl -------------------------------------------------------------------------------- /tests/test_data/test_2398psf.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_data/test_2398psf.edl -------------------------------------------------------------------------------- /tests/test_data/test_24.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_data/test_24.edl -------------------------------------------------------------------------------- /tests/test_data/test_24psf.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_data/test_24psf.edl -------------------------------------------------------------------------------- /tests/test_data/test_25.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_data/test_25.edl -------------------------------------------------------------------------------- /tests/test_data/test_2997DF.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_data/test_2997DF.edl -------------------------------------------------------------------------------- /tests/test_data/test_2997NDF.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_data/test_2997NDF.edl -------------------------------------------------------------------------------- /tests/test_data/test_50.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_data/test_50.edl -------------------------------------------------------------------------------- /tests/test_data/test_5994DF.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_data/test_5994DF.edl -------------------------------------------------------------------------------- /tests/test_data/test_5994NDF.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_data/test_5994NDF.edl -------------------------------------------------------------------------------- /tests/test_effect_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_effect_matcher.py -------------------------------------------------------------------------------- /tests/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_list.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tests/test_timewarp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_timewarp.py -------------------------------------------------------------------------------- /tests/test_title_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonh10/python-edl/HEAD/tests/test_title_matcher.py --------------------------------------------------------------------------------