Releases: AcademySoftwareFoundation/OpenTimelineIO
Beta 17 - June 2024
Summary
This release is focussed on moving adapters from the OTIO core codebase and the contrib area into independently versioned and installable PyPI packages. (#1386)
If you rely on these adapters, please use the OpenTimelineIO-Plugins
PyPI package to ensure you continue to receive them after this release.
The OpenTimelineIO native file format adapters will still be present in the opentimelineio
python package. These adapters are:
- otio_json
- otiod
- otioz
To get the full set of OTIO adapters, use the OpenTimelineIO-Plugins python package. In addition to the OpenTimelineIO native adapters, you'll also get:
- AAF
- ale
- burnins
- cmx_3600
- fcp_xml
- fcpx_xml
- hls_playlist
- maya_sequencer
- svg
- xges
The following are not included in the OTIO-maintained top-level packages:
- kdenlive - Now hosted and supported under the KDE repository
- rv_session - This adapter was made obsolete by first-party support of OpenTimelineIO in Shotgrid RV and OpenRV
This effort took a lot of help from the community and in particular the following contributors:
Big Change/Breaking Change
Other Changes
- Add implementation of to_nearest_timecode by @vade in #1717
- Add macos-14 arm64 runners by @markreidvfx in #1739
- Fix examples for C++ 17 by @darbyjohnston in #1723
- added
default_value
fallback toserializable_field
property by @timlehr in #1658 - constexpr updates by @darbyjohnston in #1721
- Remove some DeprecationWarnings by @EvanBldy in #1688
- Version update to 0.17.0 by @reinecke in #1724
- Bump codecov/codecov-action from 3.1.1 to 3.1.4 by @dependabot in #1603
- Update codecov to run on python 3.10 builds by @ssteinbach in #1727
- Pass the codecov token in CI to the uploader by @ssteinbach in #1737
- do not break the build if codecov fails by @ssteinbach in #1741
- Bump src/deps/Imath from
5b8627a
tob90cc01
by @dependabot in #1729 - Set minimum OS X deployment version to 10.14 by @darbyjohnston in #1719
- Fix sign-compare warning when compiling with GCC 14 by @JeanChristopheMorinPerso in #1749
- Added fix for pip._vendor.distlib issue on windows msys2 by @reinecke in #1762
- Add Doxygen comments to RationalTime #2 by @darbyjohnston in #1765
- Added notes about versioning OpenTimelineIO-Plugins by @reinecke in #1769
- First pass at CI and release process improvements by @jhodges10 in #1689
- Resolve CI issues and bump actions/checkout from v3->v4 by @jhodges10 in #1770
- Fixed freeze script github yaml parsing and unfroze the ci versions by @reinecke in #1726
- Release v0.17.0 by @reinecke in #1772
New Contributors
- @vade made their first contribution in #1717
- @jhodges10 made their first contribution in #1689
Full Changelog: v0.16.0...v0.17.0
Beta 16 - April 2024
Summary
This release moves from the third party any and optional to C++17 std::any
and std::optional
(by @darbyjohnston) as well as a collection of enhancements in how the python bindings handle type conversion with C++ (by @JeanChristopheMorinPerso) and the addition of comment
to the Marker
schema (by @nickblt).
This release also includes an experimental set of editing commands (by @ggarra13) in C++. These are a new set of APIs intended to implement some common editing commands (insert, overwrite, roll, etc.) backed by the OpenTimelineIO data model. These APIs are meant to provide an opportunity to try the concepts and form a base to iterate on, however there may be breaking changes as they evolve.
Important Note About Adapters
This will be the last release to include the full set of adapters. In the next release, most of the adapters will move out into their own PyPI packages as optional plugins.
tl;dr - if you rely on the adapters, please use the OpenTimelineIO-Plugins
PyPI package to ensure you continue to receive them after this release.
The OpenTimelineIO native file format adapters will still be present in the opentimelineio
python package. These adapters are:
- otio_json
- otiod
- otioz
To get the full set of OTIO adapters, use the OpenTimelineIO-Plugins python package. In addition to the OpenTimelineIO native adapters, you'll also get:
- AAF
- ale
- burnins
- cmx_3600
- fcp_xml
- fcpx_xml
- hls_playlist
- maya_sequencer
- svg
- xges
The following are not included in the OTIO-maintained top-level packages:
- kdenlive - Now hosted and supported under the KDE repository
- rv_session - This adapter was made obsolete by first-party support of OpenTimelineIO in Shotgrid RV and OpenRV
To experiment with what this looks at, check out the 0.17.0 Pre-Release - packages are provided on PyPI to try out.
Big Changes
- Remove python2.7 support by @ssteinbach in #1423
- Remove Kdenlive adapter for split out by @jlskuz in #1438
- Add support for editable installs by @JeanChristopheMorinPerso in #1460
- Add Python 3.11 to CI matrix by @JeanChristopheMorinPerso in #1465
- Add support for Premiere styled EDLs to the CMX 3600 adapter by @douglascomet in #1199
- Added --downgrade option to otiotool. by @jminor in #1485
- Added otiotool --remove-metadata-key option by @jminor in #1642
- Experimental Editing Commands by @ggarra13 in #1654
- Add optional comment field to Marker by @nickblt in #1698
- Added support to filepath_from_url for UNC paths and tests for UNC and posix paths by @douglascomet in #1674
- Support for C++17 Part 2 by @darbyjohnston in #1713
Breaking Changes
- [Breaking change] Remove support for passing a None value as the name argument by @JeanChristopheMorinPerso in #1453
- Remove deprecated each_child and each_clip functions by @darbyjohnston in #1437
Other Changes
- Script-assisted release process by @ssteinbach in #1421
- Initialize v0.16 by @ssteinbach in #1424
- Bump codecov/codecov-action from 2.1.0 to 3.1.1 by @dependabot in #1399
- Bump actions/upload-artifact from 2 to 3 by @dependabot in #1269
- Remove Travis traces by @ssteinbach in #1412
- Add documentation for new schema development/proposal process by @ssteinbach in #1429
- Bump myst-parser from 0.17.2 to 0.18.1 by @dependabot in #1431
- Bump actions/setup-python from 3 to 4.1.0 by @dependabot in #1351
- remove cp27 builds from CI by @ssteinbach in #1435
- Bump pypa/cibuildwheel from 1.12.0 to 2.10.2 by @dependabot in #1420
- Bump sphinx from 4.5.0 to 5.2.2 by @dependabot in #1434
- Remove Plugin schema
execution_scope
parameter by @ssteinbach in #1428 - Bump src/deps/pybind11 from
914c06f
toda8c730
by @dependabot in #1439 - Improve test coverage by @JeanChristopheMorinPerso in #1436
- remove more python2/3 shim code: next -> next by @ssteinbach in #1432
- Bump actions/setup-python from 4.1.0 to 4.2.0 by @dependabot in #1441
- Improve type of function callbacks in register_upgrade_function and register_downgrade_function by @JeanChristopheMorinPerso in #1445
- README: Fix typo (pypy->pypi) by @dgw in #1447
- Replace py::object type by optionalstd::string for name parameters by @JeanChristopheMorinPerso in #1446
- Use glossary terms for environment variables references in the docs by @JeanChristopheMorinPerso in #1442
- fcp_xml: serialize marker out value instead of -1 by @jhorrocks-tl in #1411
- Bump sphinx from 5.2.2 to 5.2.3 by @dependabot in #1440
- Don't override iter methods by @JeanChristopheMorinPerso in #1444
- Improve typing of the drop_frame parameter on the RationalTime.to_timecode method by @JeanChristopheMorinPerso in #1443
- Improve types of childen, tracks, effects and markers parameters in function signatures by @JeanChristopheMorinPerso in #1448
- Bump actions/setup-python from 4.2.0 to 4.3.0 by @dependabot in #1450
- Bump src/deps/pybind11 from
da8c730
to7c6f2f8
by @dependabot in #1449 - Bump pypa/cibuildwheel from 2.10.2 to 2.11.1 by @dependabot in #1451
- Bump src/deps/Imath from
3ad5d4d
to6add873
by @dependabot in #1455 - Bump src/deps/optional-lite from
5e4b776
tobe720eb
by @dependabot in #1456 - Bump sphinx from 5.2.3 to 5.3.0 by @dependabot in #1457
- Bump src/deps/pybind11 from
7c6f2f8
to964c499
by @dependabot in #1454 - Bump src/deps/pybind11 from
964c499
to5bc0943
by @dependabot in #1471 - Bump src/deps/Imath from
6add873
to443b7f0
by @dependabot in #1472 - Bump src/deps/pybind11 from
5bc0943
toee2b522
by @dependabot in #1476 - Switch to using
importlib
frompkg_resources
by @mikemahony in #1469 - Reworded error message by @jminor in #1482
- Remove RV adapter and example plugin by @jminor in #1480
- Bump src/deps/Imath from
443b7f0
to0436624
by @dependabot in #1484 - Added --relink-by-name feature to otiotool by @jminor in #1475
- Bump src/deps/pybind11 from
ee2b522
to9727dcd
by @dependabot in #1498 - Bump src/deps/Imath from
0436624
tofcb8a32
by @dependabot in h...
Beta 17 Pre-Release
Summary
This is a preview release for extracting the "batteries included" file format adapters and moving them to their own repositories and python packages. If you still require the adapters, you should use the opentimelineio-plugins
python package which will have a version correlating to each OpenTimelineIO core release.
The release is a Developmental release to give users a chance to try out how the new opentimelineio
and opentimelineio-plugins
package setups work in their environments. Because this release is an early cut, there are still a collection of tasks to complete before the final release. There are also additional 0.16.0 changes that will be integrated with this release when it is finalized, so please treat it very much as a work-in-progress.
Please provide feedback about your experience in the GitHub issue for adapter break-out - #1386.
How To Install
By default pip won't pick up developmental releases. To try this release, use one of the following:
- Setting
opentimelineio==0.17.0.dev1
as a dependency python -m pip install opentimelineio==0.17.0.dev1
python -m pip install --pre opentimelineio
To opt-in to the "batteries-included" package, use any of these variants with the opentimelineio-plugins
package.
Important Note About Adapters
Since we've removed the adapters from OpenTimelineIO core, only the OpenTimelineIO native file format adapters are present in the opentimelineio
python package. These adapters are:
- otio_json
- otiod
- otioz
To get the full set of OTIO adapters, use the OpenTimelineIO-Plugins python package. In addition to the OpenTimelineIO native adapters, you'll also get:
- AAF
- ale
- burnins
- cmx_3600
- fcp_xml
- fcpx_xml
- hls_playlist
- maya_sequencer
- svg
- xges
The following are not included in the OTIO-maintained top-level packages:
- kdenlive - Now hosted and supported under the KDE repository
- rv_session - This adapter was made obsolete by first-party support of OpenTimelineIO in Shotgrid RV and OpenRV
What's Changed
- Prepare plugin detection for removal of the cmx_3600 adapter by @apetrynet in #1488
- Extracted CMX3600 adapter and related sample data and tests by @apetrynet in #1487
- Extract AAF Adapter from OTIO core and establish separate git repo by @markreidvfx in #1348
- Remove fcp adapter by @apetrynet in #1501
- Remove svg adapter by @apetrynet in #1502
- Remove maya sequencer adapter related files by @rosborne132 in #1520
- Remove fcp x xml adapter related files by @rosborne132 in #1529
- remove hls adapter related files by @rosborne132 in #1535
- remove ale adapter related files by @rosborne132 in #1536
- Remove burnins adapter related files by @rosborne132 in #1537
- extract xges adapter files by @rosborne132 in #1538
- Remove the remains of "contrib" by @apetrynet
- fixed doc-plugins-update when custom hooks are in environment by @timlehr in #1644
Full Changelog: v0.15...v0.17.0.dev1
Beta 15 - September 2022
Summary
This release introduces Media-multi references (by @rogernelson), spatial coordinates parameters (also by @rogernelson), otiotool
command line utility, a schema downgrading system (for writing OTIO files that are compatible with older versions of OTIO), as well as a number of other smaller bug fixes and enhancements across the core and adapters. This is the last version of OTIO that will support python 2.7.
Thank you to the many community members who contributed to this release!
Important Note About OTIO File Backwards Compatibility
This version of OTIO introduces a new version of the Clip schema, Clip.2 (with multiple media reference support). If you need to write out OTIO files that are compatible with older versions of the OTIO library, then you can use the new downgrade feature to save out OTIO files with Clip.1 schema.
Example using otioconvert
on the commandline:
❯ otioconvert -i tests/sample_data/nested_example.otio -o /var/tmp/v14_compat.otio -A target_schema_versions="{'Clip':1}" && grep "OTIO_SCHEMA.*Clip" /var/tmp/v14_compat.otio
26: "OTIO_SCHEMA": "Clip.1",
75: "OTIO_SCHEMA": "Clip.1",
105: "OTIO_SCHEMA": "Clip.1",
162: "OTIO_SCHEMA": "Clip.1",
192: "OTIO_SCHEMA": "Clip.1",
249: "OTIO_SCHEMA": "Clip.1",
280: "OTIO_SCHEMA": "Clip.1",
C++:
#include <iostream>
#include "opentimelineio/timeline.h"
namespace otio = opentimelineio::OPENTIMELINEIO_VERSION;
void
main()
{
otio::ErrorStatus err;
otio::SerializableObject::Retainer<otio::Timeline> timeline(
dynamic_cast<otio::Timeline*>(
otio::Timeline::from_json_file(
"tests/sample_data/nested_example.otio",
&err
)
)
);
otio::schema_version_map downgrade_manifest = {
{"Clip", 1},
};
timeline->to_json_file("/var/tmp/v14_compat.otio", &err, &downgrade_manifest);
}
python:
import opentimelineio as otio
tl = otio.adapters.read_from_file("tests/sample_data/nested_example.otio")
otio.adapters.write_to_file(
tl,
"/var/tmp/v14_compat.otio",
target_schema_versions={"Clip": 1}
)
Big Changes
- The OpenTimelineIO project was moved over to the ASWF organization, and a number of changes were made as part of the ASWF graduation process in:
- Technical Steering Committee Charter, GOVERNANCE, etc. by @jminor in #1057
- Prep for ASWF transfer by @jminor in #932
- More ASWF transition prep by @jminor in #1167
- Replaced @Pixar email addresses with @aswf email addresses. by @jminor in #1170
- OpenTimelineIO License & CLA Change by @jminor in #1285
- Updated verify_license.py to support more languages by @jminor in #1288
- Update links in readme to point to new ASWF url by @ssteinbach in #1302
- Updated URLs to new AcademySofwareFoundation GitHub org. by @jminor in #1303
- AAF Adapter:
- Merge spatial_coordinates to main by @rogernelson in #1219
- Media Multi-Reference Feature by @rogernelson in #1241
- Schema Downgrading System by @ssteinbach in #1387
- otiotool command line utility by @jminor in #1375
Breaking Changes
- Fixes #1188 BREAKING CHANGE: change "effect" argument to Gap constructor to "effects" by @visajshah in #1292
- Clip.2 schema as noted above
Other Changes
- R0.15.set dev version by @ssteinbach in #1128
- CI: switch platform versions back to -latest by @ssteinbach in #1129
- Fix RV plugin test timing by @rogernelson in #1147
- Fix RV plugin test for Mac by @rogernelson in #1149
- Update sdist to include submodules by @JeanChristopheMorinPerso in #1152
- Improve the developer quickstart documentation by @JeanChristopheMorinPerso in #1144
- Use platform specific command to find path by @ThomasWilshaw in #1143
- Fix code coverage report uploads by @JeanChristopheMorinPerso in #1189
- Add nearest_valid_timecode_rate function by @splidje in #1181
- Replace deprecated Pybind11 get_type() usages by py::type::of() by @JeanChristopheMorinPerso in #1194
- SVG adapter fixes by @KarthikRIyer in #1195
- Remove extra useless parameter from RationalTime.copy method by @JeanChristopheMorinPerso in #1198
- Update AAF Documentation Link by @camkerr in #1202
- Add enabled flag to Item by @ThomasWilshaw in #1175
- Add missing memo keyword argument to TimeTransform.deepcopy method by @JeanChristopheMorinPerso in #1203
- Kdenlive adapter: process recent project format by @vpinon in #1191
- On macOS build universal arm64 and x86_64 by @jminor in #1214
- Port to PySide6 by @darbyjohnston in #1221
- C++ tests by @darbyjohnston in #1161
- Don't skip asserts in unit test release builds by @rogernelson in #1236
- Keep markers at the track if
child_at_time()
found something that does not hold markers by @jchen9 in #1239 - otioview track and window fit improvements by @michdolan in #1237
- Install full OTIO Python env with CMake by @michdolan in #1238
- clang notices that constexpr can't be used on a mutating function by @meshula in #1242
- AAF Adapter: Mob transcription heuristics by @jchen9 in #1249
- Add ALE adapter argument
ale_name_column_key
by @jchen9 in #1248 - Support OTIO_PLUGIN_MANIFEST_PATH being set to an empty string by @avrata in #1253
- Fix missing init metadata by @JeanChristopheMorinPerso in #1251
- Add Python 3.10 to CI by @JeanChristopheMorinPerso in #1256
- Fix #1257 missing each_clip on Clip by @meshula in #1258
- Detect & use Imath from vfxplatform CY2019-2022 by @meshula in #1255
- Adapt changes between PySide2 and PySide6 by @jchen9 in #1262
- Copy core sample data used by contrib tests into the contrib area to better isolate contrib tests by @avrata in #1266
- Add a test case and fix for transcribing markers over a single audio AAF file by @jchen9 in #1259
- Support python 3 in the "rv_session" adapter. by @avrata in #1267
- Change angle include Imath to quote include, remove multiMediaReference prototype by @meshula in #1276
- Update test_v2d to support multiple exception types by @avrata in #1279
- Fix for external Imath, must set USE_DEPS_IMATH OFF by @meshula in #1273
- AAF Clip Enabled/Muting Update by @andrewmoore-...
Beta 14.1 Patch - November 2021
Summary
This release fixes an issue where installation from the sdist (source) package on PyPI would fail. This mostly impacted users with a platform for which we don't provide a prebuilt wheel.
Changes
- Update sdist to include submodules by @JeanChristopheMorinPerso in #1156
Beta 14 - October 2021
Summary
This release has a number of features, including many backend features that upgrade the CI, build, and release process. Big thanks especially to @KarthikRIyer, @darbyjohnston and @JeanChristopheMorinPerso for their contributions in this and other areas.
Big Things
- Drop 36 support for 38, following the VFX platform by @ssteinbach in #787
- add windows and mac builds to ci by @ssteinbach in #873
- Add filebundle (otioz and otiod) adapters by @ssteinbach in #561
- Cxx examples by @darbyjohnston in #918
- Add doxygen to document cpp code by @hisergiorojas in #878
- Build wheels as a github action by @reinecke in #957
- Implement OTIO to SVG adapter by @KarthikRIyer in #1038
- Create wheels on Windows by @JeanChristopheMorinPerso in #1015
- Support Python 3.9 by @JeanChristopheMorinPerso in #1080
- PyPI publish on release by @JeanChristopheMorinPerso in #1110
- Add .clang-format file by @KarthikRIyer in #707
Other Changes
- Create GitHub Actions Workflow by @KarthikRIyer in #752
- xges: Add support for image sequences by @thiblahute in #792
- FIxed invalid timecode frame number error message by @reinecke in #795
- Update doc string for otio.algorithms.track_with_expanded_transitions() by @apetrynet in #794
- Fix a link in documentation (to serialized schema tutorial) by @Simran-B in #808
- Added a note about CLA requirement to PR template. by @jminor in #810
- Update flatten_video_tracks.py to use deepcopy. by @jminor in #812
- Retire Travis, in favor of GitHub Actions by @jminor in #817
- CMake: Set "ARCHIVE DESTINATION" in install section by @itsmattkc in #803
- Fcp 7 xml better generator support by @reinecke in #802
- Prefix
_TypeRecord
constructor params to avoid shadow warnings by @Simran-B in #825 - Python 3 deprecation fixes (including Preparing for Python 3.9) by @reinecke in #820
- Fix compilation of Swift bindings by @meshula in #834
- Cmake cleanup by @meshula in #837
- Document Metadata structure by @jminor in #861
- Added docstrings to python bindings for interval algebra methods in TimeRange by @reinecke in #789
- Check rate and value are not invalid by @hisergiorojas in #867
- Kdenlive linear timewarp by @splidje in #869
- from_start_end_time_inclusive by @splidje in #868
- detect cycles by @davidbaraff in #848
- remove swift bindings and legacy macosx-build directory by @ssteinbach in #871
- Revert the location of shared libraries by @ssteinbach in #883
- Remove tox dependency by @ssteinbach in #882
- Support --prefix correctly in new cmake system by @ssteinbach in #886
- CMake: Fix message() types by @Simran-B in #879
- FCP 7 XML: Fixed resolution of start timecode for certain NTSC rate clips by @reinecke in #843
- Fix Issue #881 by @meshula in #887
- Fix ImageSequenceReference implicit cast by @reinecke in #889
- ImageSequenceReference: Added handling for empty target_url_base by @reinecke in #891
- Enable xges unit tests on all platform/python versions by @thiblahute in #894
- quiet the aaf adapter test to clean up test output by @ssteinbach in #893
- Fix escaping for ORIGIN in rpath settings by @ssteinbach in #899
- Update build status badge to use GitHub Actions instead of Travis by @jminor in #898
- CMakeTexts fix: stop using the modname variable by @ssteinbach in #900
- Don't override user supplied C++ preferences by @nporcino-pixar in #902
- Create cmake alias targets for the OTIO namespace by @nporcino-pixar in #901
- Address big integers bug by @ssteinbach in #892
- add a --version flag to otiopluginfo + otioconvert by @ssteinbach in #880
- Change cmx_3600 adapter to use transition duration frames (Issue #895) by @JoshBurnell in #896
- Add include directories for OpenTimeConfig.cmake/OpenTimelineIOConfig… by @darbyjohnston in #916
- Documentation fixes by @darbyjohnston in #914
- Avoid exporting build tree libraries by @rogernelson in #911
- Issue 912: cmx_3600 adapter incorrectly processing three-clip transitions by @JoshBurnell in #919
- Add pybind11 subdirectory only if building python bindings by @KarthikRIyer in #927
- Add an env var to disable pkg_resources by @ssteinbach in #928
- Specify pyaaf2 requirement as a minimum version by @AWhetter in #906
- Add dependabot by @ssteinbach in #931
- add interval field to dependabot yaml by @ssteinbach in #933
- Removed inadvertent unicode char by @avrata in #939
- RV adapter fix: don't require having access to OTIO from python interpreter in rv by @ssteinbach in #941
- Ascii doc fix by @avrata in #947
- Add environment variable to skip doc tes by @ssteinbach in #944
- Localize test otiod/z test data to sample_data directory by @avrata in #942
- Use Pybind11's find python tool to correctly locate python install information by @Tilix4 in #950
- Add Try/Except around imporlib.reload for unit test to run in python2.7 as well as 3.4+ by @avrata in #949
- install mock on CI builds for python 2.7 by @ssteinbach in #951
- Refactor setup.py to build and stage into temp area for setup.py to install from by @reinecke in #956
- uncomment github actions dependabot config by @ssteinbach in #958
- Only load a manifest if it has not been loaded by @ssteinbach in #945
- make Timeline::set_tracks(null_ptr) create a new Stack to fix crash by @meshula in #961
- Fix typo in setup.py that prevents conda skeleton from parsing setup.py by @vvzen in #962
- Add support for multiple timecode objects in an AAF by @stefanschulze in #966
- Add C++ convenience wrapper for .value on the retainer class by @darbyjohnston in https://github.com/PixarAnimationStudios/OpenTime...
Beta 13 - August 2020
This release introduces the ImageSequenceReference schema to OTIO. It adds support for media references that point at sets of files on disk, for example, the rendered EXR frames for a shot. This work was contributed by @apetrynet and @reinecke. It includes RV adapter support.
Additionally, we're starting a restructure of some of the core math libraries built around a more consistent mathematical framework. The first of these changes is shifting to predicates based on Allen's Interval Algebra [https://en.wikipedia.org/wiki/Allen%27s_interval_algebra] .
Big things:
- ImageSequenceReference (@apetrynet and @reinecke) main: #602 #722 w/ #783 #751
- Allen Interval Algebra predicates (@KarthikRIyer) #697
- AAF Reader metadata support #739
- Post adapter write hook added (@apetrynet) #730
- RV native plugin (so that you can read OTIO files from inside RV rather than convert via an adapter to .rvsession files) @avrata and @apetrynet #637
Small things:
- Reverse and dissolve fixes, Wipe transition support was added to the CMX EDL adapter #763 #757 #687
- Fixing up some bugs and algorithms in rationalTime.cpp
#755 #721 #692 (@reinecke and @KarthikRIyer)
- Tox changed and our setup.cfg was altered to conform with the new standard
- otioview enhancement: double click to see full track name (@KarthikRIyer) #690
- conform.py example now prints support file suffixes (@TheBigSasha) #676
- FCP7 adapter bug fixes #674
- xges adapter markers and effects support (@hwilkes-igalia) #609
- Fix bugs in the kdenlive adapter (@vpinon) #714
- bumped pin of PyAAF2 version to 1.4.0 #738
- bug fixes in Markers #740 and #592 (@elabrosseRodeofx)
Project related things:
- added issue templates to the github repo #768
- cleaned up developer quickstart documentation #717
- documentation was broken on read the docs, this was fixed #715
Point release to fix windows builds (Beta 12.1)
Includes PR #669, which fixes issues in the cmake build system reported on windows machines. As always, please let us know if you see any further issues and alert us! Thanks!
Beta 12 - March 2020
This is the first release with the C++ core. Please test the new build system and make sure it works for your needs. If you run into issues, pin to 0.11.0 (the last pure python release) and let us know so that we can address them.
The adapters remain in python, but the core library and algorithms are implemented in C++. For more information you can see this pr:
#540
Big Changes:
- C++ Core: the core of opentimelineio is now pybind11-wrapped C++. (see above)
- otiopluginfo command was added for printing information about plugins visible to otio: #586
- Kdenlive adapter included in contrib (thanks @vpinon) #618
- Also includes preliminary swift bindings
Small Changes:
- Tweaks to the repo in anticipation of the move to being hosted by the Academy Software Foundation
- hook function arguments are passable to all commandline scripts (@mikekoetter) #651
- Documention for the C++ core, debugging and building
- local manifests are loaded so that they override the internal manifests for plugins (@JoshBurnell) #591
- Lots of upgrades for the AAF adapter (@JoshBurnell)
- SchemaDefs now have a repr method #566
- CMX EDL Adapter supports multiple locaters per clip now (@elabrosseRodeofx) #664
Lots of other small fixes and changes. Thank you to all of the community contributors!
Beta 11 - July 2019
This release is a final checkpoint before we land the C++ branch (cxx) into the master branch. We found there were a number of other small changes that needed to be made before the CXX and Master branches were ready to be merged, so we needed to do one more release before we did that.
Big Changes:
- The CXX branch is now up to date with master and will be landed shortly after we make this release. (#528)
- In keeping with the VFX platform, we've dropped support for python 3.5 and added support for python 3.7 in our unit test and CI system. (#526)
Small Changes:
- AAF bugfixes by @freesonluxo (#517, #518, #512, #493)
- Autogenerated schema documentation + unit test for detecting schema changes (#521)
- FCP XML bugfixes by @reinecke (#494)
Big thanks go to @andrewmoore-nz and @thecargocultnz for all the very detailed bug reports and repro cases, they are very helpful for improving OTIO robustness!