Skip to content

Commit

Permalink
Added support for auxiliary AAF tracks
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Lehr <tim.lehr@disneyanimation.com>
  • Loading branch information
timlehr committed Nov 9, 2023
1 parent 0c480e0 commit ba5f509
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/otio_aaf_adapter/adapters/advanced_authoring_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -868,8 +868,8 @@ def _transcribe(item, parents, edit_rate, indent=0):
elif media_kind in ("SoundMasterTrack", "Sound"):
result.kind = otio.schema.TrackKind.Audio
else:
# Timecode, Edgecode, others?
result.kind = ""
# Timecode, Edgecode, Data, ...
result.kind = f"AAF_{media_kind}"

# Done!
return result
Expand Down

0 comments on commit ba5f509

Please sign in to comment.