Skip to content

Commit

Permalink
Add Chunks and Cuts counts to the Summary
Browse files Browse the repository at this point in the history
  • Loading branch information
rexim committed Oct 29, 2023
1 parent a4f4dbf commit 8ea223c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions markut.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ func (context EvalContext) PrintSummary() {
secs += chunk.Duration()
}
fmt.Println()
fmt.Printf("Chunks Count: %d\n", len(context.chunks))
fmt.Printf("Cuts Count: %d\n", len(context.chunks) - 1)
fmt.Println()
fmt.Printf("Length: %s\n", secsToTs(int(secs)));
}

Expand Down

0 comments on commit 8ea223c

Please sign in to comment.