@@ -105,8 +105,8 @@ def create_timeline_slot(self, edit_rate, slot_id=None):
105
105
106
106
def create_empty_sequence_slot (self , edit_rate , slot_id = None , media_kind = None ):
107
107
"""
108
- Create an empty timeline slot and sets its segment to a new, empty
109
- `aaf2.components.Sequence` component. Timeline slots are for continuous,
108
+ Create an empty timeline slot and sets its segment to a new, empty
109
+ `aaf2.components.Sequence` component. Timeline slots are for continuous,
110
110
monotonically-changing media, like picture and sound.
111
111
"""
112
112
slot = self .create_timeline_slot (edit_rate , slot_id )
@@ -117,22 +117,22 @@ def create_empty_sequence_slot(self, edit_rate, slot_id=None, media_kind=None):
117
117
118
118
def create_picture_slot (self , edit_rate = 25 ):
119
119
"""
120
- Create an empty timeline slot, with the 'picture' media kind, and sets
120
+ Create an empty timeline slot, with the 'picture' media kind, and sets
121
121
its segment to a new, empty `aaf2.components.Sequence` component.
122
122
"""
123
123
return self .create_empty_sequence_slot (edit_rate , media_kind = "picture" )
124
124
125
125
def create_sound_slot (self , edit_rate = 25 ):
126
126
"""
127
- Create an empty timeline slot, with the 'sound' media kind, and sets
127
+ Create an empty timeline slot, with the 'sound' media kind, and sets
128
128
its segment to a new, empty `aaf2.components.Sequence` component.
129
129
"""
130
130
return self .create_empty_sequence_slot (edit_rate , media_kind = "sound" )
131
131
132
132
def create_source_clip (self , slot_id = None , start = None , length = None , media_kind = None ):
133
133
"""
134
134
Create a SourceClip of Mobs slot with `slot_id`. If no length given the default
135
- length will be the full length of slots segment minius `start`.
135
+ length will be the full length of slots segment minus `start`.
136
136
Returns :class:`aaf2.components.SourceClip` Object
137
137
"""
138
138
source_slot = self .slot_at (slot_id )
0 commit comments