Skip to content

Commit

Permalink
Made saving otio files also work from Fil/Save/Movies...
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Oct 10, 2023
1 parent 1d4a418 commit af0b5a2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mrv2/docs/HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ v0.8.0
present.
- Fixed macOS menu bar font size when switching from macOS menus back to normal
ones.
- Made saving of .otio files also work from File/Save/Movie or Sequence if the
extension given is .otio.

v0.7.9
======
Expand Down
6 changes: 6 additions & 0 deletions mrv2/lib/mrvFl/mrvCallbacks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,12 @@ namespace mrv
return;
}

if (extension == ".otio")
{
save_timeline_to_disk(file);
return;
}

bool valid_for_exr = false;
// Sanity check - make sure the video pixel for the current
// layerId type is float/half
Expand Down

0 comments on commit af0b5a2

Please sign in to comment.