🛠️ Other ToolsFree · No signup

Time Calculator

Add and subtract hours, minutes, and seconds. Calculate time duration between two times. Convert time to decimal hours.

About the Time Calculator

A time calculator performs arithmetic on durations expressed in hours, minutes, and seconds — adding time intervals together, subtracting one time from another, multiplying a duration by a factor, and converting between HH:MM:SS format and decimal hours. Unlike regular arithmetic that uses base-10, time uses base-60 for seconds and minutes, which makes manual time calculations surprisingly error-prone. Adding 2 hours 45 minutes to 1 hour 50 minutes is not 3 hours 95 minutes — it is 4 hours 35 minutes after carrying the 60-minute overflow. Our free time calculator handles all these conversions automatically and instantly. It supports adding any number of time intervals together (summing a day's work sessions, a week's exercise time, or a video project's clip durations), subtracting a start time from an end time, multiplying a duration by a number (how long is 6 episodes of 47 minutes?), and dividing total time by a count. The calculator also converts between HH:MM:SS and decimal hours — critical for professional invoicing, payroll, and any context where time must be expressed as a pure number rather than hours-and-minutes format.

Formula

Total seconds = (H x 3600) + (M x 60) + S | Decimal hours = H + M/60 + S/3600 | Reverse: H = floor(S/3600), M = floor((S mod 3600)/60)

How It Works

All time calculations work by first converting everything to total seconds, performing the arithmetic, then converting back. Adding: 1h 45m 30s + 2h 50m 45s. Convert: (1x3600)+(45x60)+30 = 6,330 seconds; (2x3600)+(50x60)+45 = 10,245 seconds. Sum = 16,575 seconds. Convert back: 16,575/3600 = 4 hours remainder 975 seconds; 975/60 = 16 minutes remainder 15 seconds. Result: 4h 16m 15s. Decimal conversion: 4h 16m 15s = 4 + 16/60 + 15/3600 = 4 + 0.2667 + 0.00417 = 4.271 decimal hours. Reverse: 4.271 hours = 4 hours + 0.271 x 60 = 4 hours 16.26 minutes = 4h 16m 15.6s. Multiplication: 6 episodes x 47m 22s each = 6 x (47x60+22) = 6 x 2,842 = 17,052 seconds = 4h 44m 12s total watch time.

Tips & Best Practices

  • Video editors: always add clip durations in HH:MM:SS format before committing to a final cut. A feature film that runs more than 2 hours has specific distribution and streaming platform requirements that precise runtime calculation ensures you meet.
  • For professional invoicing: always present time in decimal format. 7 hours 20 minutes = 7.333 hours. At $150/hour: 7.333 x $150 = $1,100 exactly. Rounding 7h 20m to "7.5 hours" costs your client $25 extra per session.
  • Fitness programming: add all training segments to verify total workout duration before scheduling. Warm-up 10:00 + Strength work 4 sets x 4:00 + Rest 4 sets x 2:00 + Conditioning 15:00 + Cool-down 10:00 = 10 + 16 + 8 + 15 + 10 = 59 minutes.
  • Music and podcasting: streaming platforms have minimum and maximum runtimes for different content categories. A standard album is 35-50 minutes; an EP is typically under 30 minutes — calculate your track list total before mastering.
  • Time difference across dates: for elapsed time spanning midnight or multiple days, use the date calculator in combination with the time calculator — add total days x 86,400 seconds to the time-of-day difference.
  • Aviation duty hours: pilots and flight crew are subject to strict maximum flight duty period regulations measured in hours and minutes. Precise time addition is operationally critical for regulatory compliance.
  • Research and study tracking: add focused work sessions throughout a day to calculate total productive hours — useful for Pomodoro tracking, verifying you are meeting study hour requirements, and identifying time management patterns.
  • Time zone arithmetic: when calculating meeting times across time zones, first convert all times to UTC, add or subtract the durations involved, then convert back to local time — the time calculator handles the arithmetic reliably.

Who Uses This Calculator

Video editors and film producers add clip, scene, and chapter durations to calculate total running time, verify broadcast-standard runtimes, and plan edit sessions. Athletes and coaches add interval training segment durations — warm-up, working sets, rest periods, cool-down — to calculate total session length for scheduling and planning. Podcast producers and musicians calculate total episode or album running time by adding individual track durations. Payroll administrators add daily timesheet entries for each employee to calculate accurate weekly hours including partial-hour precision. Project managers calculate total labour hours across multiple work sessions for billing and budget tracking. Flight crews and their schedulers add segment flight times plus turnaround times to verify compliance with regulatory duty period limits. Students and researchers track cumulative study hours across sessions to monitor study patterns and prepare for exams. Construction foremen and site managers add task durations from daily logs to calculate project progress against schedule.

Optimised for: USA · Canada · UK · Australia · Calculations run in your browser · No data stored

Frequently Asked Questions

How do you add hours and minutes?

Add minutes first. If total > 60, carry over to hours. Example: 2h 45m + 1h 30m = 4h 15m (75 minutes = 1h 15m).