├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── docs ├── guides │ └── understanding-edl-specs.md └── notes │ └── 2020-12-21-edl-for-mxf.md ├── example-usage.js ├── index.js ├── index.test.js ├── package.json └── sample-output ├── mixed-mxfedl.edl ├── mxfedl.edl └── regualr.edl /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/README.md -------------------------------------------------------------------------------- /docs/guides/understanding-edl-specs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/docs/guides/understanding-edl-specs.md -------------------------------------------------------------------------------- /docs/notes/2020-12-21-edl-for-mxf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/docs/notes/2020-12-21-edl-for-mxf.md -------------------------------------------------------------------------------- /example-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/example-usage.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/index.js -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/index.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/package.json -------------------------------------------------------------------------------- /sample-output/mixed-mxfedl.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/sample-output/mixed-mxfedl.edl -------------------------------------------------------------------------------- /sample-output/mxfedl.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/sample-output/mxfedl.edl -------------------------------------------------------------------------------- /sample-output/regualr.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pietrop/edl-composer/HEAD/sample-output/regualr.edl --------------------------------------------------------------------------------