Skip to content

Commit

Permalink
Fix audio export for OTIO.
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-ynput committed Dec 11, 2024
1 parent c97aa76 commit ddd1f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/ayon_flame/otio/flame_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def create_otio_reference(clip_data, media_info, fps=None):
metadata = _get_metadata(clip_data)

# Add image-based metadata if not a pure audio media
if hasattr("width", media_info):
if hasattr(media_info, "width"):
metadata.update(
{
"ayon.source.width": media_info.width,
Expand Down

0 comments on commit ddd1f08

Please sign in to comment.