mirror of
https://github.com/iluvcapra/pycmx.git
synced 2025-12-31 08:50:54 +00:00
Compare commits
109 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4d83f81fc8 | ||
|
|
69b6c7236d | ||
|
|
71ffe8cd0d | ||
|
|
3fff6c8d2a | ||
|
|
e350565430 | ||
|
|
9ec30ede02 | ||
|
|
e5130b8011 | ||
|
|
00eaccabac | ||
|
|
521d86e444 | ||
|
|
0fdba2408b | ||
|
|
199bba2466 | ||
|
|
d8f0b5694e | ||
|
|
742b0f96c3 | ||
|
|
d44948bdc1 | ||
|
|
93cff15446 | ||
|
|
fc914409ce | ||
|
|
770e7f45a4 | ||
|
|
d3cf5fa5f2 | ||
|
|
67d2bd7093 | ||
|
|
26a7eae437 | ||
|
|
407aa1c1fd | ||
|
|
13d0a80a10 | ||
|
|
dcd2a22a43 | ||
|
|
c586740269 | ||
|
|
e28dbbbe5e | ||
|
|
41df450452 | ||
|
|
c37464036d | ||
|
|
9d89834eb3 | ||
|
|
8b53d2249c | ||
|
|
0cdbc4e9be | ||
|
|
e229e807b1 | ||
|
|
a7ee1f6737 | ||
|
|
9097de8efa | ||
|
|
bc6d7f34c0 | ||
|
|
b642f859f3 | ||
|
|
29a9a5fba7 | ||
|
|
20ff7d7ee8 | ||
|
|
183f121cfc | ||
|
|
e2dffcb745 | ||
|
|
8c2ba3cc09 | ||
|
|
c7569045c1 | ||
|
|
50bcac23bb | ||
|
|
67b1631ba9 | ||
|
|
85cbafba8f | ||
|
|
595cf35e57 | ||
|
|
7fa22d4b85 | ||
|
|
42f2de54b5 | ||
|
|
f7d1432014 | ||
|
|
db4eadb73e | ||
|
|
3305bc7920 | ||
|
|
6ba77b3568 | ||
|
|
c68f8bca80 | ||
|
|
284267c9c0 | ||
|
|
bd196f2dbf | ||
|
|
b14a9a6319 | ||
|
|
0cbd01f418 | ||
|
|
50d48708e9 | ||
|
|
f67c4ac2c5 | ||
|
|
1b8a3c3288 | ||
|
|
b37b57d7c9 | ||
|
|
a9937683e5 | ||
|
|
4fae65fa8d | ||
|
|
566e6257f4 | ||
|
|
c56d2066ad | ||
|
|
8b49a788ae | ||
|
|
b31450f03d | ||
|
|
5d14c3177a | ||
|
|
08dea6031d | ||
|
|
d23fa33558 | ||
|
|
fcc4732d1a | ||
|
|
47c1ad96f0 | ||
|
|
804f649570 | ||
|
|
58483198c3 | ||
|
|
aa01e9ad2d | ||
|
|
464052f510 | ||
|
|
3ba28a61dd | ||
|
|
b80339267a | ||
|
|
27d1073f8c | ||
|
|
0840ade312 | ||
|
|
a52e4329ce | ||
|
|
47772b21d0 | ||
|
|
7b4a76448e | ||
|
|
c6c5d15e09 | ||
|
|
c439ea1fbe | ||
|
|
68f118ab6b | ||
|
|
a20491297e | ||
|
|
9d57c2d374 | ||
|
|
1882cc5308 | ||
|
|
c57fe94335 | ||
|
|
007661ef38 | ||
|
|
f34c6dd4db | ||
|
|
eb89708bab | ||
|
|
9fde608fa0 | ||
|
|
4c4ca428f2 | ||
|
|
fe4e3b9d85 | ||
|
|
119467a884 | ||
|
|
b5a3285e64 | ||
|
|
af1c532a67 | ||
|
|
23667fb782 | ||
|
|
ce31cbb879 | ||
|
|
914e8d5525 | ||
|
|
21f8880099 | ||
|
|
348962c3f7 | ||
|
|
5e902d4926 | ||
|
|
44f751fd75 | ||
|
|
16e8754a7b | ||
|
|
fbf55ec2e6 | ||
|
|
1fab2c3d71 | ||
|
|
28c2344a53 |
40
.github/workflows/python-package.yml
vendored
Normal file
40
.github/workflows/python-package.yml
vendored
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
|
||||||
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
|
||||||
|
|
||||||
|
name: Lint and Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "master" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "master" ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
python-version: ["3.7", "3.8", "3.9", "3.10"]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
|
uses: actions/setup-python@v4.3.0
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
python -m pip install flake8 pytest
|
||||||
|
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||||
|
- name: Lint with flake8
|
||||||
|
run: |
|
||||||
|
# stop the build if there are Python syntax errors or undefined names
|
||||||
|
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
||||||
|
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
|
||||||
|
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
||||||
|
- name: Test with pytest
|
||||||
|
run: |
|
||||||
|
pytest
|
||||||
26
.github/workflows/pythonpublish.yml
vendored
Normal file
26
.github/workflows/pythonpublish.yml
vendored
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
name: Upload Python Package
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [created]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v1
|
||||||
|
with:
|
||||||
|
python-version: '3.x'
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install setuptools wheel twine
|
||||||
|
- name: Build and publish
|
||||||
|
env:
|
||||||
|
TWINE_USERNAME: __token__
|
||||||
|
TWINE_PASSWORD: ${{ secrets.PYPI_APIKEY }}
|
||||||
|
run: |
|
||||||
|
python setup.py sdist bdist_wheel
|
||||||
|
twine upload dist/*
|
||||||
10
.gitignore
vendored
10
.gitignore
vendored
@@ -10,3 +10,13 @@
|
|||||||
|
|
||||||
# Vim Swapfiles
|
# Vim Swapfiles
|
||||||
*.swp
|
*.swp
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
venv/
|
||||||
|
|
||||||
|
.coverage
|
||||||
|
lcov.info
|
||||||
|
|
||||||
|
|
||||||
|
# venv
|
||||||
|
venv/
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
language: python
|
|
||||||
python:
|
|
||||||
- "3.6"
|
|
||||||
script:
|
|
||||||
- "python3 setup.py test"
|
|
||||||
install:
|
|
||||||
- "pip3 install setuptools"
|
|
||||||
13
CONTRIBUTING.md
Normal file
13
CONTRIBUTING.md
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
# Contributing
|
||||||
|
|
||||||
|
Contributions to this project are welcome!
|
||||||
|
|
||||||
|
The best way to contribute code to this project is to find this project on [Github][github] and submit a pull request.
|
||||||
|
|
||||||
|
## Call for EDLs
|
||||||
|
|
||||||
|
If you have EDLs you are having trouble working with becuase of unusual formatting, please send me a copy! Contact us
|
||||||
|
through [Github].
|
||||||
|
|
||||||
|
|
||||||
|
[github]: https://github.com/iluvcapra/pycmx
|
||||||
2
LICENSE
2
LICENSE
@@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2018 Jamie Hardt.
|
Copyright (c) 2022 Jamie Hardt.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
32
README.md
32
README.md
@@ -1,4 +1,6 @@
|
|||||||
[](https://travis-ci.com/iluvcapra/pycmx) [](https://pycmx.readthedocs.io/en/latest/?badge=latest)
|
[](https://pycmx.readthedocs.io/en/latest/?badge=latest)   [](https://pypi.org/project/pycmx/) 
|
||||||
|

|
||||||
|
[](https://github.com/iluvcapra/pycmx/actions/workflows/python-package.yml)
|
||||||
|
|
||||||
|
|
||||||
# pycmx
|
# pycmx
|
||||||
@@ -82,32 +84,4 @@ Audio channel 7 is present
|
|||||||
False
|
False
|
||||||
```
|
```
|
||||||
|
|
||||||
## How is this different from `python-edl`?
|
|
||||||
|
|
||||||
There are two important differences between `import edl` and `import pycmx`
|
|
||||||
and motivated my development of this module.
|
|
||||||
|
|
||||||
1. The `pycmx` parser doesn't take timecode or framerates into account,
|
|
||||||
and strictly treats timecodes like opaque values. As far as `pycmx` is
|
|
||||||
concerend, they're just strings. This was done because in my experience,
|
|
||||||
the frame rate of an EDL is often difficult to precisely determine and
|
|
||||||
often the frame rate of various sources is different from the frame rate
|
|
||||||
of the target track.
|
|
||||||
|
|
||||||
In any event, timecodes in an EDL are a kind of *address* and are not
|
|
||||||
exactly scalar, they're meant to point to a particular block of video or
|
|
||||||
audio data on a medium and presuming that they refer to a real time, or
|
|
||||||
duration, or are convertible, etc. isn't always safe.
|
|
||||||
|
|
||||||
2. The `pycmx` parser reads event numbers and keeps track of which EDL rows
|
|
||||||
are meant to happen "at the same time," with two decks. This makes it
|
|
||||||
easier to reconstruct transition A/B clips, and read clip names from
|
|
||||||
such events appropriately.
|
|
||||||
|
|
||||||
## Should I Use This?
|
|
||||||
|
|
||||||
At this time, this is (at best) beta software. I feel like the interface is
|
|
||||||
about where where I'd like it to be but more testing is required.
|
|
||||||
|
|
||||||
Contributions are welcome and will make this module production-ready all the
|
|
||||||
faster! Please reach out or file a ticket!
|
|
||||||
|
|||||||
BIN
docs/CMX3600.pdf
BIN
docs/CMX3600.pdf
Binary file not shown.
@@ -1,35 +0,0 @@
|
|||||||
@ECHO OFF
|
|
||||||
|
|
||||||
pushd %~dp0
|
|
||||||
|
|
||||||
REM Command file for Sphinx documentation
|
|
||||||
|
|
||||||
if "%SPHINXBUILD%" == "" (
|
|
||||||
set SPHINXBUILD=sphinx-build
|
|
||||||
)
|
|
||||||
set SOURCEDIR=source
|
|
||||||
set BUILDDIR=build
|
|
||||||
|
|
||||||
if "%1" == "" goto help
|
|
||||||
|
|
||||||
%SPHINXBUILD% >NUL 2>NUL
|
|
||||||
if errorlevel 9009 (
|
|
||||||
echo.
|
|
||||||
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
|
|
||||||
echo.installed, then set the SPHINXBUILD environment variable to point
|
|
||||||
echo.to the full path of the 'sphinx-build' executable. Alternatively you
|
|
||||||
echo.may add the Sphinx directory to PATH.
|
|
||||||
echo.
|
|
||||||
echo.If you don't have Sphinx installed, grab it from
|
|
||||||
echo.http://sphinx-doc.org/
|
|
||||||
exit /b 1
|
|
||||||
)
|
|
||||||
|
|
||||||
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
|
|
||||||
goto end
|
|
||||||
|
|
||||||
:help
|
|
||||||
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
|
|
||||||
|
|
||||||
:end
|
|
||||||
popd
|
|
||||||
24
docs/source/classes.rst
Normal file
24
docs/source/classes.rst
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
pycmx Classes
|
||||||
|
=============
|
||||||
|
|
||||||
|
.. autoclass:: pycmx.edit_list.EditList
|
||||||
|
:members:
|
||||||
|
|
||||||
|
|
||||||
|
.. autoclass:: pycmx.event.Event
|
||||||
|
:members:
|
||||||
|
|
||||||
|
|
||||||
|
.. autoclass:: pycmx.edit.Edit
|
||||||
|
:members:
|
||||||
|
|
||||||
|
|
||||||
|
.. autoclass:: pycmx.transition.Transition
|
||||||
|
:members:
|
||||||
|
|
||||||
|
|
||||||
|
.. autoclass:: pycmx.channel_map.ChannelMap
|
||||||
|
:members:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -14,13 +14,13 @@
|
|||||||
#
|
#
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
sys.path.insert(0, os.path.abspath('../../pycmx'))
|
sys.path.insert(0, os.path.abspath('../..'))
|
||||||
|
print(sys.path)
|
||||||
|
|
||||||
# -- Project information -----------------------------------------------------
|
# -- Project information -----------------------------------------------------
|
||||||
|
|
||||||
project = u'pycmx'
|
project = u'pycmx'
|
||||||
copyright = u'2018, Jamie Hardt'
|
copyright = u'2022, Jamie Hardt'
|
||||||
author = u'Jamie Hardt'
|
author = u'Jamie Hardt'
|
||||||
|
|
||||||
# The short X.Y version
|
# The short X.Y version
|
||||||
@@ -63,7 +63,7 @@ master_doc = 'index'
|
|||||||
#
|
#
|
||||||
# This is also used if you do content translation via gettext catalogs.
|
# This is also used if you do content translation via gettext catalogs.
|
||||||
# Usually you set "language" from the command line for these cases.
|
# Usually you set "language" from the command line for these cases.
|
||||||
language = None
|
language = 'em'
|
||||||
|
|
||||||
# List of patterns, relative to source directory, that match files and
|
# List of patterns, relative to source directory, that match files and
|
||||||
# directories to ignore when looking for source files.
|
# directories to ignore when looking for source files.
|
||||||
|
|||||||
7
docs/source/function.rst
Normal file
7
docs/source/function.rst
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
Parse Function
|
||||||
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
.. autofunction:: pycmx.parse_cmx_events.parse_cmx3600
|
||||||
|
|
||||||
|
|
||||||
@@ -8,13 +8,13 @@ Welcome to pycmx's documentation!
|
|||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 5
|
:maxdepth: 5
|
||||||
:caption: API Reference:
|
:caption: API Reference
|
||||||
|
|
||||||
pycmx
|
function
|
||||||
|
classes
|
||||||
|
|
||||||
Indices and tables
|
Indices and tables
|
||||||
==================
|
==================
|
||||||
|
|
||||||
* :ref:`genindex`
|
* :ref:`genindex`
|
||||||
* :ref:`modindex`
|
|
||||||
* :ref:`search`
|
* :ref:`search`
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
pycmx
|
|
||||||
=====
|
|
||||||
|
|
||||||
.. toctree::
|
|
||||||
:maxdepth: 4
|
|
||||||
|
|
||||||
pycmx
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
pycmx package
|
|
||||||
=============
|
|
||||||
|
|
||||||
Submodules
|
|
||||||
----------
|
|
||||||
|
|
||||||
pycmx.channel\_map module
|
|
||||||
-------------------------
|
|
||||||
|
|
||||||
.. automodule:: pycmx.channel_map
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
:show-inheritance:
|
|
||||||
|
|
||||||
pycmx.parse\_cmx\_events module
|
|
||||||
-------------------------------
|
|
||||||
|
|
||||||
.. automodule:: pycmx.parse_cmx_events
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
:show-inheritance:
|
|
||||||
|
|
||||||
pycmx.parse\_cmx\_statements module
|
|
||||||
-----------------------------------
|
|
||||||
|
|
||||||
.. automodule:: pycmx.parse_cmx_statements
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
:show-inheritance:
|
|
||||||
|
|
||||||
pycmx.util module
|
|
||||||
-----------------
|
|
||||||
|
|
||||||
.. automodule:: pycmx.util
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
:show-inheritance:
|
|
||||||
|
|
||||||
|
|
||||||
Module contents
|
|
||||||
---------------
|
|
||||||
|
|
||||||
.. automodule:: pycmx
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
:show-inheritance:
|
|
||||||
@@ -1,16 +1,17 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
"""
|
"""
|
||||||
pycmx is a module for parsing CMX 3600-style EDLs. For more information and
|
pycmx is a module for parsing CMX 3600-style EDLs. For more information and
|
||||||
examples see README.md
|
examples see README.md
|
||||||
|
|
||||||
This module (c) 2018 Jamie Hardt. For more information on your rights to
|
This module (c) 2018 Jamie Hardt. For more information on your rights to
|
||||||
copy and reuse this software, refer to the LICENSE file included with the
|
copy and reuse this software, refer to the LICENSE file included with the
|
||||||
distribution.
|
distribution.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = '0.7'
|
__version__ = '1.1.1'
|
||||||
__author__ = 'Jamie Hardt'
|
__author__ = 'Jamie Hardt'
|
||||||
|
|
||||||
from .parse_cmx_events import parse_cmx3600, Transition, Event, Edit
|
from .parse_cmx_events import parse_cmx3600
|
||||||
from . import parse_cmx_events
|
from .transition import Transition
|
||||||
|
from .event import Event
|
||||||
|
from .edit import Edit
|
||||||
|
|||||||
@@ -2,14 +2,15 @@
|
|||||||
# (c) 2018 Jamie Hardt
|
# (c) 2018 Jamie Hardt
|
||||||
|
|
||||||
from re import (compile, match)
|
from re import (compile, match)
|
||||||
|
from typing import Dict, Tuple
|
||||||
|
|
||||||
class ChannelMap:
|
class ChannelMap:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Represents a set of all the channels to which an event applies.
|
Represents a set of all the channels to which an event applies.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
_chan_map = { "V" : (True, False, False),
|
_chan_map : Dict[str, Tuple] = {
|
||||||
|
"V" : (True, False, False),
|
||||||
"A" : (False, True, False),
|
"A" : (False, True, False),
|
||||||
"A2" : (False, False, True),
|
"A2" : (False, False, True),
|
||||||
"AA" : (False, True, True),
|
"AA" : (False, True, True),
|
||||||
@@ -27,6 +28,11 @@ class ChannelMap:
|
|||||||
'True if video is included'
|
'True if video is included'
|
||||||
return self.v
|
return self.v
|
||||||
|
|
||||||
|
@property
|
||||||
|
def audio(self):
|
||||||
|
'True if an audio channel is included'
|
||||||
|
return len(self._audio_channel_set) > 0
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def channels(self):
|
def channels(self):
|
||||||
'A generator for each audio channel'
|
'A generator for each audio channel'
|
||||||
@@ -35,7 +41,7 @@ class ChannelMap:
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def a1(self):
|
def a1(self):
|
||||||
"""True if A1 is included."""
|
"""True if A1 is included"""
|
||||||
return self.get_audio_channel(1)
|
return self.get_audio_channel(1)
|
||||||
|
|
||||||
@a1.setter
|
@a1.setter
|
||||||
@@ -44,7 +50,7 @@ class ChannelMap:
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def a2(self):
|
def a2(self):
|
||||||
"""True if A2 is included."""
|
"""True if A2 is included"""
|
||||||
return self.get_audio_channel(2)
|
return self.get_audio_channel(2)
|
||||||
|
|
||||||
@a2.setter
|
@a2.setter
|
||||||
@@ -53,7 +59,7 @@ class ChannelMap:
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def a3(self):
|
def a3(self):
|
||||||
"""True if A3 is included."""
|
"""True if A3 is included"""
|
||||||
return self.get_audio_channel(3)
|
return self.get_audio_channel(3)
|
||||||
|
|
||||||
@a3.setter
|
@a3.setter
|
||||||
@@ -62,7 +68,7 @@ class ChannelMap:
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def a4(self):
|
def a4(self):
|
||||||
"""True if A4 is included."""
|
"""True if A4 is included"""
|
||||||
return self.get_audio_channel(4)
|
return self.get_audio_channel(4)
|
||||||
|
|
||||||
@a4.setter
|
@a4.setter
|
||||||
@@ -70,18 +76,18 @@ class ChannelMap:
|
|||||||
self.set_audio_channel(4,val)
|
self.set_audio_channel(4,val)
|
||||||
|
|
||||||
def get_audio_channel(self,chan_num):
|
def get_audio_channel(self,chan_num):
|
||||||
"""True if chan_num is included."""
|
"""True if chan_num is included"""
|
||||||
return (chan_num in self._audio_channel_set)
|
return (chan_num in self._audio_channel_set)
|
||||||
|
|
||||||
def set_audio_channel(self,chan_num,enabled):
|
def set_audio_channel(self,chan_num,enabled):
|
||||||
"""If enabled is true, chan_num will be included."""
|
"""If enabled is true, chan_num will be included"""
|
||||||
if enabled:
|
if enabled:
|
||||||
self._audio_channel_set.add(chan_num)
|
self._audio_channel_set.add(chan_num)
|
||||||
elif self.get_audio_channel(chan_num):
|
elif self.get_audio_channel(chan_num):
|
||||||
self._audio_channel_set.remove(chan_num)
|
self._audio_channel_set.remove(chan_num)
|
||||||
|
|
||||||
def _append_event(self, event_str):
|
def _append_event(self, event_str):
|
||||||
alt_channel_re = compile('^A(\d+)')
|
alt_channel_re = compile(r'^A(\d+)')
|
||||||
if event_str in self._chan_map:
|
if event_str in self._chan_map:
|
||||||
channels = self._chan_map[event_str]
|
channels = self._chan_map[event_str]
|
||||||
self.v = channels[0]
|
self.v = channels[0]
|
||||||
@@ -92,7 +98,16 @@ class ChannelMap:
|
|||||||
if matchresult:
|
if matchresult:
|
||||||
self.set_audio_channel(int( matchresult.group(1)), True )
|
self.set_audio_channel(int( matchresult.group(1)), True )
|
||||||
|
|
||||||
def _append_sxt(self, audio_ext):
|
def _append_ext(self, audio_ext):
|
||||||
self.a3 = ext.audio3
|
self.a3 = audio_ext.audio3
|
||||||
self.a4 = ext.audio4
|
self.a4 = audio_ext.audio4
|
||||||
|
|
||||||
|
def __or__(self, other):
|
||||||
|
"""
|
||||||
|
the logical union of this channel map with another
|
||||||
|
"""
|
||||||
|
out_v = self.video | other.video
|
||||||
|
out_a = self._audio_channel_set | other._audio_channel_set
|
||||||
|
|
||||||
|
return ChannelMap(v=out_v,audio_channels = out_a)
|
||||||
|
|
||||||
|
|||||||
126
pycmx/edit.py
Normal file
126
pycmx/edit.py
Normal file
@@ -0,0 +1,126 @@
|
|||||||
|
# pycmx
|
||||||
|
# (c) 2018 Jamie Hardt
|
||||||
|
|
||||||
|
from .transition import Transition
|
||||||
|
from .channel_map import ChannelMap
|
||||||
|
from .parse_cmx_statements import StmtEffectsName
|
||||||
|
|
||||||
|
class Edit:
|
||||||
|
"""
|
||||||
|
An individual source-to-record operation, with a source roll, source and
|
||||||
|
recorder timecode in and out, a transition and channels.
|
||||||
|
"""
|
||||||
|
def __init__(self, edit_statement, audio_ext_statement, clip_name_statement, source_file_statement, trans_name_statement = None):
|
||||||
|
self.edit_statement = edit_statement
|
||||||
|
self.audio_ext = audio_ext_statement
|
||||||
|
self.clip_name_statement = clip_name_statement
|
||||||
|
self.source_file_statement = source_file_statement
|
||||||
|
self.trans_name_statement = trans_name_statement
|
||||||
|
|
||||||
|
@property
|
||||||
|
def line_number(self):
|
||||||
|
"""
|
||||||
|
Get the line number for the "standard form" statement associated with
|
||||||
|
this edit. Line numbers a zero-indexed, such that the
|
||||||
|
"TITLE:" record is line zero.
|
||||||
|
"""
|
||||||
|
return self.edit_statement.line_number
|
||||||
|
|
||||||
|
@property
|
||||||
|
def channels(self):
|
||||||
|
"""
|
||||||
|
Get the :obj:`ChannelMap` object associated with this Edit.
|
||||||
|
"""
|
||||||
|
cm = ChannelMap()
|
||||||
|
cm._append_event(self.edit_statement.channels)
|
||||||
|
if self.audio_ext != None:
|
||||||
|
cm._append_ext(self.audio_ext)
|
||||||
|
return cm
|
||||||
|
|
||||||
|
@property
|
||||||
|
def transition(self):
|
||||||
|
"""
|
||||||
|
Get the :obj:`Transition` object associated with this edit.
|
||||||
|
"""
|
||||||
|
if self.trans_name_statement:
|
||||||
|
return Transition(self.edit_statement.trans, self.edit_statement.trans_op, self.trans_name_statement.name)
|
||||||
|
else:
|
||||||
|
return Transition(self.edit_statement.trans, self.edit_statement.trans_op, None)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def source_in(self):
|
||||||
|
"""
|
||||||
|
Get the source in timecode.
|
||||||
|
"""
|
||||||
|
return self.edit_statement.source_in
|
||||||
|
|
||||||
|
@property
|
||||||
|
def source_out(self):
|
||||||
|
"""
|
||||||
|
Get the source out timecode.
|
||||||
|
"""
|
||||||
|
|
||||||
|
return self.edit_statement.source_out
|
||||||
|
|
||||||
|
@property
|
||||||
|
def record_in(self):
|
||||||
|
"""
|
||||||
|
Get the record in timecode.
|
||||||
|
"""
|
||||||
|
|
||||||
|
return self.edit_statement.record_in
|
||||||
|
|
||||||
|
@property
|
||||||
|
def record_out(self):
|
||||||
|
"""
|
||||||
|
Get the record out timecode.
|
||||||
|
"""
|
||||||
|
|
||||||
|
return self.edit_statement.record_out
|
||||||
|
|
||||||
|
@property
|
||||||
|
def source(self):
|
||||||
|
"""
|
||||||
|
Get the source column. This is the 8, 32 or 128-character string on the
|
||||||
|
event record line, this usually references the tape name of the source.
|
||||||
|
"""
|
||||||
|
return self.edit_statement.source
|
||||||
|
|
||||||
|
@property
|
||||||
|
def black(self):
|
||||||
|
"""
|
||||||
|
Black video or silence should be used as the source for this event.
|
||||||
|
"""
|
||||||
|
return self.source == "BL"
|
||||||
|
|
||||||
|
@property
|
||||||
|
def aux_source(self):
|
||||||
|
"""
|
||||||
|
An auxiliary source is the source of this event.
|
||||||
|
"""
|
||||||
|
return self.source == "AX"
|
||||||
|
|
||||||
|
@property
|
||||||
|
def source_file(self):
|
||||||
|
"""
|
||||||
|
Get the source file, as attested by a "* SOURCE FILE" remark on the
|
||||||
|
EDL. This will return None if the information is not present.
|
||||||
|
"""
|
||||||
|
if self.source_file_statement is None:
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
return self.source_file_statement.filename
|
||||||
|
|
||||||
|
@property
|
||||||
|
def clip_name(self):
|
||||||
|
"""
|
||||||
|
Get the clip name, as attested by a "* FROM CLIP NAME" or "* TO CLIP
|
||||||
|
NAME" remark on the EDL. This will return None if the information is
|
||||||
|
not present.
|
||||||
|
"""
|
||||||
|
if self.clip_name_statement is None:
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
return self.clip_name_statement.name
|
||||||
|
|
||||||
|
|
||||||
109
pycmx/edit_list.py
Normal file
109
pycmx/edit_list.py
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
# pycmx
|
||||||
|
# (c) 2018 Jamie Hardt
|
||||||
|
|
||||||
|
from .parse_cmx_statements import (StmtUnrecognized, StmtFCM, StmtEvent, StmtSourceUMID)
|
||||||
|
from .event import Event
|
||||||
|
from .channel_map import ChannelMap
|
||||||
|
|
||||||
|
class EditList:
|
||||||
|
"""
|
||||||
|
Represents an entire edit decision list as returned by `parse_cmx3600()`.
|
||||||
|
|
||||||
|
"""
|
||||||
|
def __init__(self, statements):
|
||||||
|
self.title_statement = statements[0]
|
||||||
|
self.event_statements = statements[1:]
|
||||||
|
|
||||||
|
|
||||||
|
@property
|
||||||
|
def format(self):
|
||||||
|
"""
|
||||||
|
The detected format of the EDL. Possible values are: `3600`,`File32`,
|
||||||
|
`File128`, and `unknown`
|
||||||
|
"""
|
||||||
|
first_event = next( (s for s in self.event_statements if type(s) is StmtEvent), None)
|
||||||
|
|
||||||
|
if first_event:
|
||||||
|
if first_event.format == 8:
|
||||||
|
return '3600'
|
||||||
|
elif first_event.format == 32:
|
||||||
|
return 'File32'
|
||||||
|
elif first_event.format == 128:
|
||||||
|
return 'File128'
|
||||||
|
else:
|
||||||
|
return 'unknown'
|
||||||
|
else:
|
||||||
|
return 'unknown'
|
||||||
|
|
||||||
|
|
||||||
|
@property
|
||||||
|
def channels(self):
|
||||||
|
"""
|
||||||
|
Return the union of every channel channel.
|
||||||
|
"""
|
||||||
|
|
||||||
|
retval = ChannelMap()
|
||||||
|
for event in self.events:
|
||||||
|
for edit in event.edits:
|
||||||
|
retval = retval | edit.channels
|
||||||
|
|
||||||
|
return retval
|
||||||
|
|
||||||
|
|
||||||
|
@property
|
||||||
|
def title(self):
|
||||||
|
"""
|
||||||
|
The title of this edit list.
|
||||||
|
"""
|
||||||
|
return self.title_statement.title
|
||||||
|
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unrecognized_statements(self):
|
||||||
|
"""
|
||||||
|
A generator for all the unrecognized statements in the list.
|
||||||
|
"""
|
||||||
|
for s in self.event_statements:
|
||||||
|
if type(s) is StmtUnrecognized:
|
||||||
|
yield s
|
||||||
|
|
||||||
|
|
||||||
|
@property
|
||||||
|
def events(self):
|
||||||
|
'A generator for all the events in the edit list'
|
||||||
|
is_drop = None
|
||||||
|
current_event_num = None
|
||||||
|
event_statements = []
|
||||||
|
for stmt in self.event_statements:
|
||||||
|
if type(stmt) is StmtFCM:
|
||||||
|
is_drop = stmt.drop
|
||||||
|
elif type(stmt) is StmtEvent:
|
||||||
|
if current_event_num is None:
|
||||||
|
current_event_num = stmt.event
|
||||||
|
event_statements.append(stmt)
|
||||||
|
else:
|
||||||
|
if current_event_num != stmt.event:
|
||||||
|
yield Event(statements=event_statements)
|
||||||
|
event_statements = [stmt]
|
||||||
|
current_event_num = stmt.event
|
||||||
|
else:
|
||||||
|
event_statements.append(stmt)
|
||||||
|
|
||||||
|
elif type(stmt) is StmtSourceUMID:
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
event_statements.append(stmt)
|
||||||
|
|
||||||
|
yield Event(statements=event_statements)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def sources(self):
|
||||||
|
"""
|
||||||
|
A generator for all of the sources in the list
|
||||||
|
"""
|
||||||
|
|
||||||
|
for stmt in self.event_statements:
|
||||||
|
if type(stmt) is StmtSourceUMID:
|
||||||
|
yield stmt
|
||||||
|
|
||||||
|
|
||||||
97
pycmx/event.py
Normal file
97
pycmx/event.py
Normal file
@@ -0,0 +1,97 @@
|
|||||||
|
# pycmx
|
||||||
|
# (c) 2018 Jamie Hardt
|
||||||
|
|
||||||
|
from .parse_cmx_statements import (StmtEvent, StmtClipName, StmtSourceFile, StmtAudioExt, StmtUnrecognized, StmtEffectsName)
|
||||||
|
from .edit import Edit
|
||||||
|
|
||||||
|
class Event:
|
||||||
|
"""
|
||||||
|
Represents a collection of :class:`Edit`s, all with the same event number.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, statements):
|
||||||
|
self.statements = statements
|
||||||
|
|
||||||
|
@property
|
||||||
|
def number(self):
|
||||||
|
"""
|
||||||
|
Return the event number.
|
||||||
|
"""
|
||||||
|
return int(self._edit_statements()[0].event)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def edits(self):
|
||||||
|
"""
|
||||||
|
Returns the edits. Most events will have a single edit, a single event
|
||||||
|
will have multiple edits when a dissolve, wipe or key transition needs
|
||||||
|
to be performed.
|
||||||
|
"""
|
||||||
|
edits_audio = list( self._statements_with_audio_ext() )
|
||||||
|
clip_names = self._clip_name_statements()
|
||||||
|
source_files= self._source_file_statements()
|
||||||
|
|
||||||
|
the_zip = [edits_audio]
|
||||||
|
|
||||||
|
if len(edits_audio) == 2:
|
||||||
|
cn = [None, None]
|
||||||
|
for clip_name in clip_names:
|
||||||
|
if clip_name.affect == 'from':
|
||||||
|
cn[0] = clip_name
|
||||||
|
elif clip_name.affect == 'to':
|
||||||
|
cn[1] = clip_name
|
||||||
|
|
||||||
|
the_zip.append(cn)
|
||||||
|
else:
|
||||||
|
if len(edits_audio) == len(clip_names):
|
||||||
|
the_zip.append(clip_names)
|
||||||
|
else:
|
||||||
|
the_zip.append([None] * len(edits_audio) )
|
||||||
|
|
||||||
|
if len(edits_audio) == len(source_files):
|
||||||
|
the_zip.append(source_files)
|
||||||
|
elif len(source_files) == 1:
|
||||||
|
the_zip.append( source_files * len(edits_audio) )
|
||||||
|
else:
|
||||||
|
the_zip.append([None] * len(edits_audio) )
|
||||||
|
|
||||||
|
# attach trans name to last event
|
||||||
|
try:
|
||||||
|
trans_statement = self._trans_name_statements()[0]
|
||||||
|
trans_names = [None] * (len(edits_audio) - 1)
|
||||||
|
trans_names.append(trans_statement)
|
||||||
|
the_zip.append(trans_names)
|
||||||
|
except IndexError:
|
||||||
|
the_zip.append([None] * len(edits_audio) )
|
||||||
|
|
||||||
|
|
||||||
|
return [ Edit(e1[0],e1[1],n1,s1,u1) for (e1,n1,s1,u1) in zip(*the_zip) ]
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unrecognized_statements(self):
|
||||||
|
"""
|
||||||
|
A generator for all the unrecognized statements in the event.
|
||||||
|
"""
|
||||||
|
for s in self.statements:
|
||||||
|
if type(s) is StmtUnrecognized:
|
||||||
|
yield s
|
||||||
|
|
||||||
|
def _trans_name_statements(self):
|
||||||
|
return [s for s in self.statements if type(s) is StmtEffectsName]
|
||||||
|
|
||||||
|
def _edit_statements(self):
|
||||||
|
return [s for s in self.statements if type(s) is StmtEvent]
|
||||||
|
|
||||||
|
def _clip_name_statements(self):
|
||||||
|
return [s for s in self.statements if type(s) is StmtClipName]
|
||||||
|
|
||||||
|
def _source_file_statements(self):
|
||||||
|
return [s for s in self.statements if type(s) is StmtSourceFile]
|
||||||
|
|
||||||
|
def _statements_with_audio_ext(self):
|
||||||
|
for (s1, s2) in zip(self.statements, self.statements[1:]):
|
||||||
|
if type(s1) is StmtEvent and type(s2) is StmtAudioExt:
|
||||||
|
yield (s1,s2)
|
||||||
|
elif type(s1) is StmtEvent:
|
||||||
|
yield (s1, None)
|
||||||
|
|
||||||
|
|
||||||
@@ -1,13 +1,11 @@
|
|||||||
# pycmx
|
# pycmx
|
||||||
# (c) 2018 Jamie Hardt
|
# (c) 2018 Jamie Hardt
|
||||||
|
|
||||||
from .parse_cmx_statements import (parse_cmx3600_statements,
|
|
||||||
StmtEvent, StmtFCM, StmtTitle, StmtClipName, StmtSourceFile, StmtAudioExt, StmtUnrecognized)
|
|
||||||
|
|
||||||
from .channel_map import ChannelMap
|
|
||||||
|
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
|
from .parse_cmx_statements import (parse_cmx3600_statements, StmtEvent,StmtFCM )
|
||||||
|
from .edit_list import EditList
|
||||||
|
|
||||||
def parse_cmx3600(f):
|
def parse_cmx3600(f):
|
||||||
"""
|
"""
|
||||||
Parse a CMX 3600 EDL.
|
Parse a CMX 3600 EDL.
|
||||||
@@ -16,333 +14,8 @@ def parse_cmx3600(f):
|
|||||||
f : a file-like object, anything that's readlines-able.
|
f : a file-like object, anything that's readlines-able.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
An :obj:`EditList`.
|
An :class:`pycmx.edit_list.EditList`.
|
||||||
"""
|
"""
|
||||||
statements = parse_cmx3600_statements(f)
|
statements = parse_cmx3600_statements(f)
|
||||||
return EditList(statements)
|
return EditList(statements)
|
||||||
|
|
||||||
|
|
||||||
class EditList:
|
|
||||||
"""
|
|
||||||
Represents an entire edit decision list as returned by `parse_cmx3600()`.
|
|
||||||
|
|
||||||
"""
|
|
||||||
def __init__(self, statements):
|
|
||||||
self.title_statement = statements[0]
|
|
||||||
self.event_statements = statements[1:]
|
|
||||||
|
|
||||||
@property
|
|
||||||
def title(self):
|
|
||||||
"""
|
|
||||||
The title of this edit list, as attensted by the 'TITLE:' statement on
|
|
||||||
the first line.
|
|
||||||
"""
|
|
||||||
'The title of the edit list'
|
|
||||||
return self.title_statement.title
|
|
||||||
|
|
||||||
|
|
||||||
@property
|
|
||||||
def unrecognized_statements(self):
|
|
||||||
"""
|
|
||||||
A generator for all the unrecognized statements in the list.
|
|
||||||
"""
|
|
||||||
for s in self.event_statements:
|
|
||||||
if type(s) is StmtUnrecognized:
|
|
||||||
yield s
|
|
||||||
|
|
||||||
|
|
||||||
@property
|
|
||||||
def events(self):
|
|
||||||
'A generator for all the events in the edit list'
|
|
||||||
is_drop = None
|
|
||||||
current_event_num = None
|
|
||||||
event_statements = []
|
|
||||||
for stmt in self.event_statements:
|
|
||||||
if type(stmt) is StmtFCM:
|
|
||||||
is_drop = stmt.drop
|
|
||||||
elif type(stmt) is StmtEvent:
|
|
||||||
if current_event_num is None:
|
|
||||||
current_event_num = stmt.event
|
|
||||||
event_statements.append(stmt)
|
|
||||||
else:
|
|
||||||
if current_event_num != stmt.event:
|
|
||||||
yield Event(statements=event_statements)
|
|
||||||
event_statements = [stmt]
|
|
||||||
current_event_num = stmt.event
|
|
||||||
else:
|
|
||||||
event_statements.append(stmt)
|
|
||||||
|
|
||||||
else:
|
|
||||||
event_statements.append(stmt)
|
|
||||||
|
|
||||||
yield Event(statements=event_statements)
|
|
||||||
|
|
||||||
|
|
||||||
class Edit:
|
|
||||||
def __init__(self, edit_statement, audio_ext_statement, clip_name_statement, source_file_statement, other_statements = []):
|
|
||||||
self.edit_statement = edit_statement
|
|
||||||
self.audio_ext = audio_ext_statement
|
|
||||||
self.clip_name_statement = clip_name_statement
|
|
||||||
self.source_file_statement = source_file_statement
|
|
||||||
self.other_statements = other_statements
|
|
||||||
|
|
||||||
@property
|
|
||||||
def line_number(self):
|
|
||||||
"""
|
|
||||||
Get the line number for the "standard form" statement associated with
|
|
||||||
this edit. Line numbers a zero-indexed, such that the
|
|
||||||
"TITLE:" record is line zero.
|
|
||||||
"""
|
|
||||||
return self.edit_statement.line_number
|
|
||||||
|
|
||||||
@property
|
|
||||||
def channels(self):
|
|
||||||
"""
|
|
||||||
Get the :obj:`ChannelMap` object associated with this Edit.
|
|
||||||
"""
|
|
||||||
cm = ChannelMap()
|
|
||||||
cm._append_event(self.edit_statement.channels)
|
|
||||||
if self.audio_ext != None:
|
|
||||||
cm._append_ext(self.audio_ext)
|
|
||||||
return cm
|
|
||||||
|
|
||||||
@property
|
|
||||||
def transition(self):
|
|
||||||
"""
|
|
||||||
Get the :obj:`Transition` object associated with this edit.
|
|
||||||
"""
|
|
||||||
return Transition(self.edit_statement.trans, self.edit_statement.trans_op)
|
|
||||||
|
|
||||||
@property
|
|
||||||
def source_in(self):
|
|
||||||
"""
|
|
||||||
Get the source in timecode.
|
|
||||||
"""
|
|
||||||
return self.edit_statement.source_in
|
|
||||||
|
|
||||||
@property
|
|
||||||
def source_out(self):
|
|
||||||
"""
|
|
||||||
Get the source out timecode.
|
|
||||||
"""
|
|
||||||
|
|
||||||
return self.edit_statement.source_out
|
|
||||||
|
|
||||||
@property
|
|
||||||
def record_in(self):
|
|
||||||
"""
|
|
||||||
Get the record in timecode.
|
|
||||||
"""
|
|
||||||
|
|
||||||
return self.edit_statement.record_in
|
|
||||||
|
|
||||||
@property
|
|
||||||
def record_out(self):
|
|
||||||
"""
|
|
||||||
Get the record out timecode.
|
|
||||||
"""
|
|
||||||
|
|
||||||
return self.edit_statement.record_out
|
|
||||||
|
|
||||||
@property
|
|
||||||
def source(self):
|
|
||||||
"""
|
|
||||||
Get the source column. This is the 8, 32 or 128-character string on the
|
|
||||||
event record line, this usually references the tape name of the source.
|
|
||||||
"""
|
|
||||||
return self.edit_statement.source
|
|
||||||
|
|
||||||
|
|
||||||
@property
|
|
||||||
def source_file(self):
|
|
||||||
"""
|
|
||||||
Get the source file, as attested by a "* SOURCE FILE" remark on the
|
|
||||||
EDL. This will return None if the information is not present.
|
|
||||||
"""
|
|
||||||
if self.source_file_statement is None:
|
|
||||||
return None
|
|
||||||
else:
|
|
||||||
return self.source_file_statement.filename
|
|
||||||
|
|
||||||
|
|
||||||
@property
|
|
||||||
def clip_name(self):
|
|
||||||
"""
|
|
||||||
Get the clip name, as attested by a "* FROM CLIP NAME" or "* TO CLIP
|
|
||||||
NAME" remark on the EDL. This will return None if the information is
|
|
||||||
not present.
|
|
||||||
"""
|
|
||||||
if self.clip_name_statement != None:
|
|
||||||
return self.clip_name_statement.name
|
|
||||||
else:
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Event:
|
|
||||||
"""
|
|
||||||
Represents a collection of :obj:`Edit`s, all with the same event number.
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __init__(self, statements):
|
|
||||||
self.statements = statements
|
|
||||||
|
|
||||||
@property
|
|
||||||
def number(self):
|
|
||||||
"""Return the event number."""
|
|
||||||
return int(self._edit_statements()[0].event)
|
|
||||||
|
|
||||||
@property
|
|
||||||
def edits(self):
|
|
||||||
"""
|
|
||||||
Returns the edits. Most events will have a single edit, a single event
|
|
||||||
will have multiple edits when a dissolve, wipe or key transition needs
|
|
||||||
to be performed.
|
|
||||||
"""
|
|
||||||
edits_audio = list( self._statements_with_audio_ext() )
|
|
||||||
clip_names = self._clip_name_statements()
|
|
||||||
source_files= self._source_file_statements()
|
|
||||||
|
|
||||||
the_zip = [edits_audio]
|
|
||||||
|
|
||||||
if len(edits_audio) == 2:
|
|
||||||
cn = [None, None]
|
|
||||||
for clip_name in clip_names:
|
|
||||||
if clip_name.affect == 'from':
|
|
||||||
cn[0] = clip_name
|
|
||||||
elif clip_name.affect == 'to':
|
|
||||||
cn[1] = clip_name
|
|
||||||
|
|
||||||
the_zip.append(cn)
|
|
||||||
|
|
||||||
else:
|
|
||||||
if len(edits_audio) == len(clip_names):
|
|
||||||
the_zip.append(clip_names)
|
|
||||||
else:
|
|
||||||
the_zip.append([None] * len(edits_audio) )
|
|
||||||
|
|
||||||
if len(edits_audio) == len(source_files):
|
|
||||||
the_zip.append(source_files)
|
|
||||||
elif len(source_files) == 1:
|
|
||||||
the_zip.append( source_files * len(edits_audio) )
|
|
||||||
else:
|
|
||||||
the_zip.append([None] * len(edits_audio) )
|
|
||||||
|
|
||||||
|
|
||||||
return [ Edit(e1[0],e1[1],n1,s1) for (e1,n1,s1) in zip(*the_zip) ]
|
|
||||||
|
|
||||||
@property
|
|
||||||
def unrecognized_statements(self):
|
|
||||||
"""
|
|
||||||
A generator for all the unrecognized statements in the event.
|
|
||||||
"""
|
|
||||||
for s in self.statements:
|
|
||||||
if type(s) is StmtUnrecognized:
|
|
||||||
yield s
|
|
||||||
|
|
||||||
def _edit_statements(self):
|
|
||||||
return [s for s in self.statements if type(s) is StmtEvent]
|
|
||||||
|
|
||||||
def _clip_name_statements(self):
|
|
||||||
return [s for s in self.statements if type(s) is StmtClipName]
|
|
||||||
|
|
||||||
def _source_file_statements(self):
|
|
||||||
return [s for s in self.statements if type(s) is StmtSourceFile]
|
|
||||||
|
|
||||||
def _statements_with_audio_ext(self):
|
|
||||||
for (s1, s2) in zip(self.statements, self.statements[1:]):
|
|
||||||
if type(s1) is StmtEvent and type(s2) is StmtAudioExt:
|
|
||||||
yield (s1,s2)
|
|
||||||
elif type(s1) is StmtEvent:
|
|
||||||
yield (s1, None)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Transition:
|
|
||||||
"""Represents a CMX transition, a wipe, dissolve or cut."""
|
|
||||||
|
|
||||||
Cut = "C"
|
|
||||||
|
|
||||||
Dissolve = "D"
|
|
||||||
|
|
||||||
Wipe = "W"
|
|
||||||
|
|
||||||
KeyBackground = "KB"
|
|
||||||
|
|
||||||
Key = "K"
|
|
||||||
|
|
||||||
KeyOut = "KO"
|
|
||||||
|
|
||||||
|
|
||||||
def __init__(self, transition, operand):
|
|
||||||
self.transition = transition
|
|
||||||
self.operand = operand
|
|
||||||
self.name = ''
|
|
||||||
|
|
||||||
|
|
||||||
@property
|
|
||||||
def kind(self):
|
|
||||||
"""
|
|
||||||
Return the kind of transition: Cut, Wipe, etc
|
|
||||||
"""
|
|
||||||
if self.cut:
|
|
||||||
return Transition.Cut
|
|
||||||
elif self.dissolve:
|
|
||||||
return Transition.Dissolve
|
|
||||||
elif self.wipe:
|
|
||||||
return Transition.Wipe
|
|
||||||
elif self.key_background:
|
|
||||||
return Transition.KeyBackground
|
|
||||||
elif self.key_foreground:
|
|
||||||
return Transition.Key
|
|
||||||
elif self.key_out:
|
|
||||||
return Transition.KeyOut
|
|
||||||
|
|
||||||
@property
|
|
||||||
def cut(self):
|
|
||||||
"`True` if this transition is a cut."
|
|
||||||
return self.transition == 'C'
|
|
||||||
|
|
||||||
@property
|
|
||||||
def dissolve(self):
|
|
||||||
"`True` if this traansition is a dissolve."
|
|
||||||
return self.transition == 'D'
|
|
||||||
|
|
||||||
|
|
||||||
@property
|
|
||||||
def wipe(self):
|
|
||||||
"`True` if this transition is a wipe."
|
|
||||||
return self.transition.startswith('W')
|
|
||||||
|
|
||||||
|
|
||||||
@property
|
|
||||||
def effect_duration(self):
|
|
||||||
"""The duration of this transition, in frames of the record target.
|
|
||||||
|
|
||||||
In the event of a key event, this is the duration of the fade in.
|
|
||||||
"""
|
|
||||||
return int(self.operand)
|
|
||||||
|
|
||||||
@property
|
|
||||||
def wipe_number(self):
|
|
||||||
"Wipes are identified by a particular number."
|
|
||||||
if self.wipe:
|
|
||||||
return int(self.transition[1:])
|
|
||||||
else:
|
|
||||||
return None
|
|
||||||
|
|
||||||
@property
|
|
||||||
def key_background(self):
|
|
||||||
"`True` if this is a key background event."
|
|
||||||
return self.transition == KeyBackground
|
|
||||||
|
|
||||||
@property
|
|
||||||
def key_foreground(self):
|
|
||||||
"`True` if this is a key foreground event."
|
|
||||||
return self.transition == Key
|
|
||||||
|
|
||||||
@property
|
|
||||||
def key_out(self):
|
|
||||||
"`True` if this is a key out event."
|
|
||||||
return self.transition == KeyOut
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
# pycmx
|
# pycmx
|
||||||
# (c) 2018 Jamie Hardt
|
# (c) 2018 Jamie Hardt
|
||||||
|
|
||||||
from .util import collimate
|
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
from itertools import count
|
from itertools import count
|
||||||
|
|
||||||
|
from .util import collimate
|
||||||
|
|
||||||
StmtTitle = namedtuple("Title",["title","line_number"])
|
StmtTitle = namedtuple("Title",["title","line_number"])
|
||||||
StmtFCM = namedtuple("FCM",["drop","line_number"])
|
StmtFCM = namedtuple("FCM",["drop","line_number"])
|
||||||
StmtEvent = namedtuple("Event",["event","source","channels","trans",\
|
StmtEvent = namedtuple("Event",["event","source","channels","trans",\
|
||||||
"trans_op","source_in","source_out","record_in","record_out","line_number"])
|
"trans_op","source_in","source_out","record_in","record_out","format","line_number"])
|
||||||
StmtAudioExt = namedtuple("AudioExt",["audio3","audio4","line_number"])
|
StmtAudioExt = namedtuple("AudioExt",["audio3","audio4","line_number"])
|
||||||
StmtClipName = namedtuple("ClipName",["name","affect","line_number"])
|
StmtClipName = namedtuple("ClipName",["name","affect","line_number"])
|
||||||
StmtSourceFile = namedtuple("SourceFile",["filename","line_number"])
|
StmtSourceFile = namedtuple("SourceFile",["filename","line_number"])
|
||||||
StmtRemark = namedtuple("Remark",["text","line_number"])
|
StmtRemark = namedtuple("Remark",["text","line_number"])
|
||||||
StmtEffectsName = namedtuple("EffectsName",["name","line_number"])
|
StmtEffectsName = namedtuple("EffectsName",["name","line_number"])
|
||||||
StmtTrailer = namedtuple("Trailer",["text","line_number"])
|
StmtSourceUMID = namedtuple("Source",["name","umid","line_number"])
|
||||||
StmtSplitEdit = namedtuple("SplitEdit",["video","magnitue", "line_number"])
|
StmtSplitEdit = namedtuple("SplitEdit",["video","magnitue", "line_number"])
|
||||||
StmtMotionMemory = namedtuple("MotionMemory",["source","fps"]) # FIXME needs more fields
|
StmtMotionMemory = namedtuple("MotionMemory",["source","fps"]) # FIXME needs more fields
|
||||||
StmtUnrecognized = namedtuple("Unrecognized",["content","line_number"])
|
StmtUnrecognized = namedtuple("Unrecognized",["content","line_number"])
|
||||||
@@ -69,8 +69,8 @@ def _parse_cmx3600_line(line, line_number):
|
|||||||
return _parse_extended_audio_channels(line,line_number)
|
return _parse_extended_audio_channels(line,line_number)
|
||||||
elif line.startswith("*"):
|
elif line.startswith("*"):
|
||||||
return _parse_remark( line[1:].strip(), line_number)
|
return _parse_remark( line[1:].strip(), line_number)
|
||||||
elif line.startswith(">>>"):
|
elif line.startswith(">>> SOURCE"):
|
||||||
return _parse_trailer_statement(line, line_number)
|
return _parse_source_umid_statement(line, line_number)
|
||||||
elif line.startswith("EFFECTS NAME IS"):
|
elif line.startswith("EFFECTS NAME IS"):
|
||||||
return _parse_effects_name(line, line_number)
|
return _parse_effects_name(line, line_number)
|
||||||
elif line.startswith("SPLIT:"):
|
elif line.startswith("SPLIT:"):
|
||||||
@@ -157,10 +157,11 @@ def _parse_columns_for_standard_form(line, event_field_length, source_field_leng
|
|||||||
source_out=column_strings[12].strip(),
|
source_out=column_strings[12].strip(),
|
||||||
record_in=column_strings[14].strip(),
|
record_in=column_strings[14].strip(),
|
||||||
record_out=column_strings[16].strip(),
|
record_out=column_strings[16].strip(),
|
||||||
line_number=line_number)
|
line_number=line_number,
|
||||||
|
format=source_field_length)
|
||||||
|
|
||||||
|
|
||||||
def _parse_trailer_statement(line, line_number):
|
def _parse_source_umid_statement(line, line_number):
|
||||||
trimmed = line[3:].strip()
|
trimmed = line[3:].strip()
|
||||||
return StmtTrailer(trimmed, line_number=line_number)
|
return StmtSourceUMID(name=None, umid=None, line_number=line_number)
|
||||||
|
|
||||||
|
|||||||
86
pycmx/transition.py
Normal file
86
pycmx/transition.py
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
# pycmx
|
||||||
|
# (c) 2018 Jamie Hardt
|
||||||
|
|
||||||
|
class Transition:
|
||||||
|
"""
|
||||||
|
A CMX transition: a wipe, dissolve or cut.
|
||||||
|
"""
|
||||||
|
|
||||||
|
Cut = "C"
|
||||||
|
Dissolve = "D"
|
||||||
|
Wipe = "W"
|
||||||
|
KeyBackground = "KB"
|
||||||
|
Key = "K"
|
||||||
|
KeyOut = "KO"
|
||||||
|
|
||||||
|
def __init__(self, transition, operand, name=None):
|
||||||
|
self.transition = transition
|
||||||
|
self.operand = operand
|
||||||
|
self.name = name
|
||||||
|
|
||||||
|
@property
|
||||||
|
def kind(self):
|
||||||
|
"""
|
||||||
|
Return the kind of transition: Cut, Wipe, etc
|
||||||
|
"""
|
||||||
|
if self.cut:
|
||||||
|
return Transition.Cut
|
||||||
|
elif self.dissolve:
|
||||||
|
return Transition.Dissolve
|
||||||
|
elif self.wipe:
|
||||||
|
return Transition.Wipe
|
||||||
|
elif self.key_background:
|
||||||
|
return Transition.KeyBackground
|
||||||
|
elif self.key_foreground:
|
||||||
|
return Transition.Key
|
||||||
|
elif self.key_out:
|
||||||
|
return Transition.KeyOut
|
||||||
|
|
||||||
|
@property
|
||||||
|
def cut(self):
|
||||||
|
"`True` if this transition is a cut."
|
||||||
|
return self.transition == 'C'
|
||||||
|
|
||||||
|
@property
|
||||||
|
def dissolve(self):
|
||||||
|
"`True` if this traansition is a dissolve."
|
||||||
|
return self.transition == 'D'
|
||||||
|
|
||||||
|
@property
|
||||||
|
def wipe(self):
|
||||||
|
"`True` if this transition is a wipe."
|
||||||
|
return self.transition.startswith('W')
|
||||||
|
|
||||||
|
@property
|
||||||
|
def effect_duration(self):
|
||||||
|
"""The duration of this transition, in frames of the record target.
|
||||||
|
|
||||||
|
In the event of a key event, this is the duration of the fade in.
|
||||||
|
"""
|
||||||
|
return int(self.operand)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def wipe_number(self):
|
||||||
|
"Wipes are identified by a particular number."
|
||||||
|
if self.wipe:
|
||||||
|
return int(self.transition[1:])
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
|
||||||
|
@property
|
||||||
|
def key_background(self):
|
||||||
|
"`True` if this edit is a key background."
|
||||||
|
return self.transition == Transition.KeyBackground
|
||||||
|
|
||||||
|
@property
|
||||||
|
def key_foreground(self):
|
||||||
|
"`True` if this edit is a key foreground."
|
||||||
|
return self.transition == Transition.Key
|
||||||
|
|
||||||
|
@property
|
||||||
|
def key_out(self):
|
||||||
|
"""
|
||||||
|
`True` if this edit is a key out. This material will removed from
|
||||||
|
the key foreground and replaced with the key background.
|
||||||
|
"""
|
||||||
|
return self.transition == Transition.KeyOut
|
||||||
9
requirements.txt
Normal file
9
requirements.txt
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
attrs==22.1.0
|
||||||
|
coverage==6.5.0
|
||||||
|
exceptiongroup==1.0.4
|
||||||
|
iniconfig==1.1.1
|
||||||
|
packaging==21.3
|
||||||
|
pluggy==1.0.0
|
||||||
|
pyparsing==3.0.9
|
||||||
|
pytest==7.2.0
|
||||||
|
tomli==2.0.1
|
||||||
20
setup.py
20
setup.py
@@ -4,16 +4,30 @@ with open("README.md", "r") as fh:
|
|||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setup(name='pycmx',
|
setup(name='pycmx',
|
||||||
version='0.7',
|
version='1.1.5',
|
||||||
author='Jamie Hardt',
|
author='Jamie Hardt',
|
||||||
author_email='jamiehardt@me.com',
|
author_email='jamiehardt@me.com',
|
||||||
description='CMX 3600 Edit Decision List Parser',
|
description='CMX 3600 Edit Decision List Parser',
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
project_urls={
|
||||||
|
'Source':
|
||||||
|
'https://github.com/iluvcapra/pycmx',
|
||||||
|
'Documentation':
|
||||||
|
'https://pycmx.readthedocs.io/',
|
||||||
|
'Issues':
|
||||||
|
'https://github.com/iluvcapra/pycmx/issues',
|
||||||
|
},
|
||||||
url='https://github.com/iluvcapra/pycmx',
|
url='https://github.com/iluvcapra/pycmx',
|
||||||
classifiers=['Development Status :: 4 - Beta',
|
classifiers=['Development Status :: 5 - Production/Stable',
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Topic :: Multimedia',
|
'Topic :: Multimedia',
|
||||||
'Topic :: Multimedia :: Video',
|
'Topic :: Multimedia :: Video',
|
||||||
'Topic :: Text Processing'],
|
'Topic :: Text Processing',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
|
'Programming Language :: Python :: 3.8',
|
||||||
|
'Programming Language :: Python :: 3.9',
|
||||||
|
'Programming Language :: Python :: 3.10'
|
||||||
|
],
|
||||||
packages=['pycmx'])
|
packages=['pycmx'])
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
from . import test_parse
|
||||||
|
|||||||
@@ -18,21 +18,24 @@ class TestParse(TestCase):
|
|||||||
counts = [ 287, 466, 250 , 376, 120 , 3 , 466 ]
|
counts = [ 287, 466, 250 , 376, 120 , 3 , 466 ]
|
||||||
|
|
||||||
for fn, count in zip(type(self).files, counts):
|
for fn, count in zip(type(self).files, counts):
|
||||||
with open(f"tests/edls/{fn}" ,'r') as f:
|
with open("tests/edls/" + fn ,'r') as f:
|
||||||
edl = pycmx.parse_cmx3600(f)
|
edl = pycmx.parse_cmx3600(f)
|
||||||
actual = len( list( edl.events ))
|
actual = len( list( edl.events ))
|
||||||
self.assertTrue( actual == count , f"expected {count} in file {fn} but found {actual}")
|
self.assertTrue( actual == count ,
|
||||||
|
"expected %i in file %s but found %i" % (count, fn, actual))
|
||||||
|
|
||||||
def test_list_sanity(self):
|
def test_list_sanity(self):
|
||||||
for fn in type(self).files:
|
for fn in type(self).files:
|
||||||
with open(f"tests/edls/{fn}" ,'r') as f:
|
with open("tests/edls/" + fn ,'r') as f:
|
||||||
edl = pycmx.parse_cmx3600(f)
|
edl = pycmx.parse_cmx3600(f)
|
||||||
self.assertTrue( type(edl.title) is str )
|
self.assertTrue( type(edl.title) is str )
|
||||||
|
self.assertTrue( len(edl.title) > 0 )
|
||||||
|
|
||||||
|
|
||||||
def test_event_sanity(self):
|
def test_event_sanity(self):
|
||||||
for fn in type(self).files:
|
for fn in type(self).files:
|
||||||
with open(f"tests/edls/{fn}" ,'r') as f:
|
path = "tests/edls/" + fn
|
||||||
|
with open(path ,'r') as f:
|
||||||
edl = pycmx.parse_cmx3600(f)
|
edl = pycmx.parse_cmx3600(f)
|
||||||
for index, event in enumerate(edl.events):
|
for index, event in enumerate(edl.events):
|
||||||
self.assertTrue( len(event.edits) > 0 )
|
self.assertTrue( len(event.edits) > 0 )
|
||||||
@@ -44,7 +47,7 @@ class TestParse(TestCase):
|
|||||||
with open("tests/edls/TEST.edl",'r') as f:
|
with open("tests/edls/TEST.edl",'r') as f:
|
||||||
edl = pycmx.parse_cmx3600(f)
|
edl = pycmx.parse_cmx3600(f)
|
||||||
events = list( edl.events )
|
events = list( edl.events )
|
||||||
|
|
||||||
self.assertEqual( events[0].number , 1)
|
self.assertEqual( events[0].number , 1)
|
||||||
self.assertEqual( events[0].edits[0].source , "OY_HEAD_")
|
self.assertEqual( events[0].edits[0].source , "OY_HEAD_")
|
||||||
self.assertEqual( events[0].edits[0].clip_name , "HEAD LEADER MONO")
|
self.assertEqual( events[0].edits[0].clip_name , "HEAD LEADER MONO")
|
||||||
@@ -63,6 +66,7 @@ class TestParse(TestCase):
|
|||||||
self.assertFalse( events[0].edits[0].channels.a1)
|
self.assertFalse( events[0].edits[0].channels.a1)
|
||||||
self.assertTrue( events[0].edits[0].channels.a2)
|
self.assertTrue( events[0].edits[0].channels.a2)
|
||||||
self.assertTrue( events[2].edits[0].channels.get_audio_channel(7) )
|
self.assertTrue( events[2].edits[0].channels.get_audio_channel(7) )
|
||||||
|
self.assertTrue( events[2].edits[0].channels.audio)
|
||||||
|
|
||||||
|
|
||||||
def test_multi_edit_events(self):
|
def test_multi_edit_events(self):
|
||||||
@@ -98,4 +102,12 @@ class TestParse(TestCase):
|
|||||||
self.assertEqual( events[14].edits[0].line_number, 45)
|
self.assertEqual( events[14].edits[0].line_number, 45)
|
||||||
self.assertEqual( events[180].edits[0].line_number, 544)
|
self.assertEqual( events[180].edits[0].line_number, 544)
|
||||||
|
|
||||||
|
def test_transition_name(self):
|
||||||
|
with open("tests/edls/test_25.edl","r") as f:
|
||||||
|
edl = pycmx.parse_cmx3600(f)
|
||||||
|
events = list(edl.events)
|
||||||
|
self.assertEqual( events[4].edits[1].transition.name , "CROSS DISSOLVE" )
|
||||||
|
|
||||||
|
|
||||||
|
# add test for edit_list.channels
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user