Metadata-Version: 2.1
Name: py_edl_editor
Version: 0.2.2
Summary: A cross-platform, PySide2-based EDL (Edit Decision List) GUI.
Home-page: https://github.com/ThomasWeckenmann/py_edl_editor
Author: Thomas Weckenmann
Author-email: tweckenmann0711@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: PySide2
Requires-Dist: cdl_convert
Requires-Dist: opentimelineio
Requires-Dist: timecode
Requires-Dist: edl

py_edl_editor
=============

[![PyPI version](https://badge.fury.io/py/py_edl_editor.svg)](https://badge.fury.io/py/py_edl_editor)
![workflow](https://github.com/ThomasWeckenmann/py_edl_editor/actions/workflows/build.yml/badge.svg)
[![codecov](https://codecov.io/gh/ThomasWeckenmann/py_edl_editor/branch/main/graph/badge.svg?token=L68DDHRZAS)](https://codecov.io/gh/ThomasWeckenmann/py_edl_editor)
[![Maintainability](https://api.codeclimate.com/v1/badges/dbfe6a28130fd9e06566/maintainability)](https://codeclimate.com/github/ThomasWeckenmann/py_edl_editor/maintainability)

A python EDL (Edit Decision List) GUI, based on the EDL library
by Simon Hargreaves https://pypi.org/project/edl/ which is using
[pytimecode](https://code.google.com/p/pytimecode/).
Also using the cdl_convert library by Sean Wallitsch:
https://github.com/shidarin/cdl_convert

Work in progress, so collaboration welcome.

![py_edl_editor](https://raw.githubusercontent.com/ThomasWeckenmann/py_edl_editor/main/py_edl_editor_gui.png)

Installation:

    pip install py_edl_editor

Usage without EDL:

    edl_editor

Usage with EDL:

    edl_editor [path_to_edl] [optional framerate]
    edl_editor path_to_edl.edl 24

Accepted framerate values ['60', '59.94', '50', '30', '29.97', '25', '24',
'23.98'].

Dependencies:

    PySide2
    cdl_convert
    opentimelineio
    timecode
    edl

(The MIT License)

Copyright © 2021 Thomas Weckenmann <tweckenmann0711@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the ‘Software’), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

