edl-reader


Nameedl-reader JSON
Version 0.1.14 PyPI version JSON
download
home_pagehttp://www.simon-hargreaves.com/python-edl
SummarySimple EDL reading library.
upload_time2023-04-19 22:14:20
maintainerCG Wire,
docs_urlNone
authorSimon Hargreaves,
requires_python>= 3.7
licenseMIT
keywords cg production edl edit decision list parser
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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.

            

Raw data

            {
    "_id": null,
    "home_page": "http://www.simon-hargreaves.com/python-edl",
    "name": "edl-reader",
    "maintainer": "CG Wire,",
    "docs_url": null,
    "requires_python": ">= 3.7",
    "maintainer_email": "evan@cg-wire.com,",
    "keywords": "cg,production,edl,edit,decision,list,parser",
    "author": "Simon Hargreaves,",
    "author_email": "simon@simon-hargreaves.com,",
    "download_url": "",
    "platform": null,
    "description": "edl-reader\n==========\n\nA python EDL (Edit Decision List) parsing library, based on the ruby EDL\nlibrary by Julik Tarkhanov http://guerilla-di.org/edl/. Still a work in\nprogress so collaboration welcome.\n\nhttps://github.com/cgwire/edl-reader\n\nUsage::\n\n    from edl import Parser\n    parser = Parser(\"23.98\")\n    with open(\"file.edl\") as f:\n        edl = parser.parse(f)\n        for event in edl.events:\n            print(\"Event Number: %s\" % (event.num))\n            print(\"Source file: %s\" % (event.source_file))\n            print(\"Clip Name: %s \" % (event.clip_name))\n\nAccepted framerate values ['60', '59.94', '50', '30', '29.97', '25', '24',\n'23.98'] whole number frame rates are more tested than others, but the accuracy\nrelies heavily on accuracy of the pytimecode library.\n\nDocumentation for pytimecode can be found\n[here](https://code.google.com/p/pytimecode/).\n\n\n(The MIT License)\n\nCopyright \u00a9 2013 Simon Hargreaves <simon@simon-hargreaves.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \u2018Software\u2019), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \u2018AS IS\u2019, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Simple EDL reading library.",
    "version": "0.1.14",
    "split_keywords": [
        "cg",
        "production",
        "edl",
        "edit",
        "decision",
        "list",
        "parser"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f1ec29b03f1b56fdca9c3d03d0fd4d4f96fc17d294e45426ddfd1c9e8105024",
                "md5": "5388750c7dc9a103e565c0dbf5bf3a6b",
                "sha256": "28f046422f4e536367b51bee42dcadab22daa4d10999315f98d5fc37fad8c786"
            },
            "downloads": -1,
            "filename": "edl_reader-0.1.14-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5388750c7dc9a103e565c0dbf5bf3a6b",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">= 3.7",
            "size": 7527,
            "upload_time": "2023-04-19T22:14:20",
            "upload_time_iso_8601": "2023-04-19T22:14:20.922424Z",
            "url": "https://files.pythonhosted.org/packages/9f/1e/c29b03f1b56fdca9c3d03d0fd4d4f96fc17d294e45426ddfd1c9e8105024/edl_reader-0.1.14-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-19 22:14:20",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "edl-reader"
}
        
Elapsed time: 0.05789s