Add or subtract two time durations in HH:MM:SS format. Useful for timesheet calculations, race splits and cumulative video-runtime.
Advertisement
How it works
Both inputs are parsed into total seconds. We add or subtract, then reformat the result as HH:MM:SS.
Key features
- HH:MM:SS input format
- Add and subtract operations
- Handles negative results (for subtraction)
- Displays result as seconds, minutes and hours too
Common use cases
Timesheets
7:30 worked + 4:15 worked = 11:45 total.
Race splits
Combine lap times to find total race duration.
Music playlist runtime
Sum all track durations.
Advertisement
Pro tips
- โUse leading zeros (00:05:00) for consistency but the parser accepts 5:00 too.
Common mistakes to avoid
- โAdding times as if they were decimals โ 1:30 + 1:30 = 3:00, not 2:60.
Frequently asked questions
Can I subtract a larger time from a smaller one?โผ
Yes โ the result will be negative.
Advertisement