Time Duration Calculator

Add or subtract hours, minutes, and seconds — calculate total time duration

Time Duration Calculator

Add or subtract hours, minutes, and seconds

Time Duration

Enter hours, minutes, and seconds to add

Formula
Total seconds = hours x 3600 + minutes x 60 + seconds

What Is a Time Duration Calculator?

The time duration calculator lets you add multiple time intervals together or subtract one from another. It's useful for tracking total time across tasks, summing up video lengths, calculating how long a road trip takes with stops, or figuring out the remaining time in a schedule. Whether you're a project manager tracking billable hours or a student planning study sessions, this tool keeps your time math error-free.

Unlike regular math, time uses a base-60 system — 60 seconds per minute, 60 minutes per hour. That means you can't just add the digits like plain numbers. This tool handles all the carryover automatically, so you get clean hours:minutes:seconds results without doing the mental gymnastics. Just enter your durations, choose add or subtract, and let it do the work.

How to Use the Time Duration Calculator

  1. Enter the first time duration in hours:minutes:seconds format (e.g., 1:30:00 for 1 hour 30 minutes).
  2. Add more time intervals as needed using the additional input fields.
  3. Choose whether to add or subtract the durations.
  4. Click Calculate to see the total duration displayed in H:M:S format.

Time Duration Formula

Convert to total seconds: Total = hours × 3600 + minutes × 60 + seconds Add durations: Sum = Duration1 + Duration2 + ... (in seconds) Convert back to H:M:S: Hours = floor(Sum / 3600) Minutes = floor((Sum % 3600) / 60) Seconds = Sum % 60 Example: 1:45:30 + 2:20:45 = (1×3600 + 45×60 + 30) + (2×3600 + 20×60 + 45) = 6330 + 8445 = 14775 seconds = 4h 6m 15s

Time arithmetic wraps at 60 — 75 minutes equals 1 hour 15 minutes, not 1:75. This calculator handles all carries automatically, so your result is always in clean H:M:S notation no matter how large the numbers get.

Worked Examples

Summing Three Video Lengths

You have three video clips: 12:34, 8:45, and 15:20. Adding them together: 12m 34s + 8m 45s + 15m 20s = 36 minutes 39 seconds total. Perfect for estimating total watch time or editing session length.

Time Remaining in a Workday

Your workday is 8 hours (8:00:00). You spent 1:15:00 in meetings. Subtracting gives 6:45:00 of productive working time remaining. Useful for tracking availability when scheduling tasks.

Road Trip Total Travel Time

You drove 2:30 before a rest stop, took a 0:45 break, then drove another 1:15. Adding 2:30:00 + 0:45:00 + 1:15:00 = 4:30:00 total trip time. Great for planning arrival times and fuel stops.

Frequently Asked Questions

How is this different from adding time in Excel?
Excel can add time, but it requires formatting cells as [h]:mm:ss and knowing the right formulas. It also stores time as decimal fractions of a day, which gets confusing fast. This calculator is purpose-built for time arithmetic — no formatting tricks, no formulas to remember. Just enter your durations and get an instant answer.
What does base-60 arithmetic mean for time?
Most everyday math is base-10: after 9, you carry to the next column. Time is base-60: after 59 seconds you roll over to 1 minute, and after 59 minutes you roll over to 1 hour. That's why you can't simply add 1:50 + 0:25 and get 1:75 — the correct answer is 2:15. This calculator does all that carrying for you automatically.
How do I convert a number of seconds into hours, minutes, and seconds?
Divide the total seconds by 3600 to get hours (take the floor). Take the remainder, divide by 60 to get minutes (floor again). Whatever's left is the seconds. For example, 9999 seconds: 9999 ÷ 3600 = 2 hours remainder 2799; 2799 ÷ 60 = 46 minutes remainder 39 seconds. Result: 2:46:39.
Can I add more than two time durations at once?
Yes. The calculator supports adding as many time intervals as you need. Just use the additional input fields to enter each duration, and the tool sums them all together in one step. This is especially handy when totalling multiple tasks, episodes, or work sessions.
What happens if I subtract and the result is negative?
If the time you're subtracting is larger than the starting duration, the result would be negative. In those cases the calculator will display the result as a negative duration (e.g., -0:15:00) so you know you've gone past zero. This is useful for tracking overruns — like when a meeting runs 15 minutes longer than its allotted slot.