We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d61921 commit 599c5a4Copy full SHA for 599c5a4
1 file changed
README.md
@@ -110,7 +110,7 @@ main()
110
)
111
);
112
const std::vector<otio::SerializableObject::Retainer<otio::Clip>> clips = (
113
- tl->clip_if()
+ tl->find_clips()
114
115
for (const auto& cl : clips)
116
{
@@ -127,7 +127,7 @@ Python:
127
import opentimelineio as otio
128
129
timeline = otio.adapters.read_from_file("foo.aaf")
130
-for clip in timeline.clip_if():
+for clip in timeline.find_clips():
131
print(clip.name, clip.duration())
132
```
133
0 commit comments