Metadata-Version: 2.1
Name: edl-reader
Version: 0.1.14
Summary: Simple EDL reading library.
Home-page: http://www.simon-hargreaves.com/python-edl
Author: Simon Hargreaves,
Author-email: simon@simon-hargreaves.com,
Maintainer: CG Wire,
Maintainer-email: evan@cg-wire.com,
License: MIT
Keywords: cg,production,edl,edit,decision,list,parser
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Multimedia :: Graphics
Requires-Python: >= 3.7
License-File: LICENSE
Requires-Dist: timecode (>=1.3.1)
Provides-Extra: dev
Requires-Dist: wheel ; extra == 'dev'
Provides-Extra: lint
Requires-Dist: black (==23.3.0) ; extra == 'lint'
Requires-Dist: pre-commit (==3.2.2) ; extra == 'lint'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'

edl-reader
==========

A python EDL (Edit Decision List) parsing library, based on the ruby EDL
library by Julik Tarkhanov http://guerilla-di.org/edl/. Still a work in
progress so collaboration welcome.

https://github.com/cgwire/edl-reader

Usage::

    from edl import Parser
    parser = Parser("23.98")
    with open("file.edl") as f:
        edl = parser.parse(f)
        for event in edl.events:
            print("Event Number: %s" % (event.num))
            print("Source file: %s" % (event.source_file))
            print("Clip Name: %s " % (event.clip_name))

Accepted framerate values ['60', '59.94', '50', '30', '29.97', '25', '24',
'23.98'] whole number frame rates are more tested than others, but the accuracy
relies heavily on accuracy of the pytimecode library.

Documentation for pytimecode can be found
[here](https://code.google.com/p/pytimecode/).


(The MIT License)

Copyright © 2013 Simon Hargreaves <simon@simon-hargreaves.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.
