()
| 214 | } |
| 215 | |
| 216 | public getDuration() { |
| 217 | return this.edits.reduce( |
| 218 | (acc, edit) => acc + this.getSecondDurationOfSegment(edit), |
| 219 | 0, |
| 220 | ); |
| 221 | } |
| 222 | |
| 223 | private getTimeSubtractingFrames(frames: number) { |
| 224 | const durationOfPastSegmentsInSeconds = this.edits |
no test coverage detected