forked from AcademySoftwareFoundation/OpenTimelineIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflatten_video_tracks.cpp
86 lines (74 loc) · 2.79 KB
/
flatten_video_tracks.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// SPDX-License-Identifier: Apache-2.0
// Copyright Contributors to the OpenTimelineIO project
#include "util.h"
#include <opentimelineio/stackAlgorithm.h>
#include <opentimelineio/timeline.h>
#include <iostream>
#include <sstream>
namespace otio = opentimelineio::OPENTIMELINEIO_VERSION;
int main(int argc, char** argv)
{
if (argc != 3)
{
std::cout << "Usage: flatten_video_tracks (inputpath) (outputpath)" << std::endl;
return 1;
}
// Read the file
otio::ErrorStatus error_status;
otio::SerializableObject::Retainer<otio::Timeline> timeline(dynamic_cast<otio::Timeline*>(otio::Timeline::from_json_file(argv[1], &error_status)));
if (!timeline)
{
examples::print_error(error_status);
return 1;
}
auto video_tracks = timeline.value->video_tracks();
auto audio_tracks = timeline.value->audio_tracks();
std::cout << "Read " << video_tracks.size() << " video tracks and " <<
audio_tracks.size() << " audio tracks." << std::endl;
// Take just the video tracks - and flatten them into one.
// This will trim away any overlapping segments, collapsing everything
// into a single track.
std::cout << "Flattening " << video_tracks.size() << " video tracks into one..." << std::endl;
auto onetrack = otio::flatten_stack(video_tracks, &error_status);
if (!onetrack or is_error(error_status))
{
examples::print_error(error_status);
return 1;
}
// Now make a new empty Timeline and put that one Track into it
std::string name;
std::stringstream ss(name);
ss << timeline.value->name() << " Flattened";
auto newtimeline = otio::SerializableObject::Retainer<otio::Timeline>(new otio::Timeline(ss.str()));
auto stack = otio::SerializableObject::Retainer<otio::Stack>(new otio::Stack());
newtimeline.value->set_tracks(stack);
if (!stack.value->append_child(onetrack, &error_status))
{
examples::print_error(error_status);
return 1;
}
// keep the audio track(s) as-is
for (const auto& audio_track : audio_tracks)
{
auto clone = dynamic_cast<otio::Track*>(audio_track->clone(&error_status));
if (!clone)
{
examples::print_error(error_status);
return 1;
}
if (!stack.value->append_child(clone, &error_status))
{
examples::print_error(error_status);
return 1;
}
}
// ...and save it to disk.
std::cout << "Saving " << newtimeline.value->video_tracks().size() << " video tracks and " <<
newtimeline.value->audio_tracks().size() << " audio tracks." << std::endl;
if (!newtimeline.value->to_json_file(argv[2], &error_status))
{
examples::print_error(error_status);
return 1;
}
return 0;
}