Duration to Seconds Converter
This tool combines a duration entered as hours, minutes, and seconds into a single value measured in seconds. A total-second value is useful when configuring software timeouts, comparing recorded durations, or preparing time data for a spreadsheet. This page does not run a countdown, track elapsed time, sound an alarm, or send a notification.
Method and formula
The calculator uses the standard relationships of 60 seconds per minute and 60 minutes per hour:
total seconds = hours × 3,600 + minutes × 60 + seconds
Enter non-negative values. The minute and second fields may be greater than 59: the tool treats them as quantities and normalizes them through arithmetic. For example, 90 minutes is accepted as 5,400 seconds rather than rejected for not being written as 1 hour and 30 minutes.
Worked example
For 1 hour, 2 minutes, and 3 seconds:
1 × 3,600 + 2 × 60 + 3 = 3,723 seconds
As a second example, 90 minutes converts to:
0 × 3,600 + 90 × 60 + 0 = 5,400 seconds
Both forms describe valid durations. The result contains no date, time zone, or clock-time information.
What the result means
The output is the same duration expressed using only seconds. It is not a prediction of when an event will finish. If a program expects milliseconds, multiply the result by 1,000; that additional conversion is not performed by this tool.
Keep the distinction between a duration and a clock reading. “3,723 seconds” is an amount of time, while “10:15:00” is a time of day whose interpretation can depend on a date and time zone.
Accuracy and limitations
- Inputs must be finite, non-negative numbers. Blank, negative, or non-numeric values do not produce a valid result.
- Decimal inputs are allowed, so 0.5 seconds remains half a second. Display rounding can hide more precise digits in very large or fractional results.
- The calculation uses the conventional minute and hour definitions. It does not model leap seconds, calendar days, daylight-saving changes, or relativistic clock effects.
- This is a unit conversion, not a stopwatch or scheduling service. Do not rely on it to trigger safety-critical or time-critical actions.
Sources
- BIPM, The International System of Units (SI Brochure) — SI definitions and the accepted use of minute and hour with the SI.
- NIST Special Publication 811, Guide for the Use of the International System of Units — guidance on expressing SI quantities and units.
Editorial record
- Author: SoupCalc Editorial Team
- Method review: SoupCalc Engineering Review
- Last reviewed: August 10, 2026
- Review scope: formula, validation behavior, examples, source links, and claims about the tool's actual functions