-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes and improvements for Kdenlive adapter (#1390)
* Add global marker import/export * Add unsupported clip placeholder only if needed * [Kdenlive adapter] Refactor, fix and extend - Add support for SMPTE bars (read and write) - Fix reading of projects with "mixes" (only reading yet) - Add support for clip markers (only reading yet) - Move some code parts to functions to improve readability, reusablity and testability. * [Kdenlive adapter] extend tests * [Kdenlive adapter] Fix linting * Update plugin documentation after Kdenlive adapter update Signed-off-by: Julius Künzel <[email protected]>
- Loading branch information
Showing
7 changed files
with
2,870 additions
and
119 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
70 changes: 70 additions & 0 deletions
70
contrib/opentimelineio_contrib/adapters/tests/sample_data/generator_reference_test.otio
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"OTIO_SCHEMA": "Timeline.1", | ||
"metadata": {}, | ||
"name": "transition_test", | ||
"tracks": { | ||
"OTIO_SCHEMA": "Stack.1", | ||
"children": [ | ||
{ | ||
"OTIO_SCHEMA": "Sequence.1", | ||
"children": [ | ||
{ | ||
"OTIO_SCHEMA": "Clip.1", | ||
"effects": [], | ||
"markers": [], | ||
"enabled": true, | ||
"media_reference": { | ||
"OTIO_SCHEMA" : "GeneratorReference.1", | ||
"available_range" : { | ||
"OTIO_SCHEMA": "TimeRange.1", | ||
"duration": { | ||
"OTIO_SCHEMA": "RationalTime.1", | ||
"rate": 24, | ||
"value": 50 | ||
}, | ||
"start_time": { | ||
"OTIO_SCHEMA": "RationalTime.1", | ||
"rate": 24, | ||
"value": 0.0 | ||
} | ||
}, | ||
"generator_kind" : "SMPTEBars", | ||
"metadata" : {}, | ||
"parameters" : {}, | ||
"name" : "bars" | ||
}, | ||
"metadata": {}, | ||
"name": "C", | ||
"source_range": { | ||
"OTIO_SCHEMA": "TimeRange.1", | ||
"duration": { | ||
"OTIO_SCHEMA": "RationalTime.1", | ||
"rate": 24, | ||
"value": 50 | ||
}, | ||
"start_time": { | ||
"OTIO_SCHEMA": "RationalTime.1", | ||
"rate": 24, | ||
"value": 0.0 | ||
} | ||
} | ||
|
||
} | ||
], | ||
"effects": [], | ||
"kind": "Video", | ||
"markers": [], | ||
"enabled": true, | ||
"metadata": {}, | ||
"name": "Sequence1", | ||
"source_range": null | ||
} | ||
], | ||
"effects": [], | ||
"markers": [], | ||
"enabled": true, | ||
"metadata": {}, | ||
"name": "tracks", | ||
"source_range": null | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,065 changes: 1,065 additions & 0 deletions
1,065
contrib/opentimelineio_contrib/adapters/tests/sample_data/kdenlive_example_v221170.kdenlive
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.