Seconds to Minutes Converter

Convert any number of seconds to minutes, hours and days.

Seconds to Minutes
Seconds to Minutes
Minutes
60
Hours
1
Days
0.041667
Updates instantly · formula below

How to use this seconds to minutes

  1. 1Enter any number of seconds.
  2. 2The converter shows minutes, hours, and days instantly.
  3. 3For video editing, enter total clip duration in seconds to see the time in minutes and hours.
  4. 4For programming timestamps, convert Unix time differences (in seconds) to readable time durations.
  5. 5For athletic races, convert finishing times in seconds to min:sec format.
  6. 6Key reference: 60 seconds = 1 minute, 3,600 seconds = 1 hour, 86,400 seconds = 1 day.
Formula

How it's calculated

minutes = seconds ÷ 60. hours = minutes ÷ 60.

About the Seconds to Minutes

Seconds to minutes is the foundational time conversion used in programming, video production, athletics, and scientific measurement. The 60-second minute is a direct inheritance from Babylonian mathematics — a civilization that used base-60 arithmetic approximately 3,000–4,000 years ago. This ancient number system survives intact in our time units because 60 divides evenly by more numbers than any alternative, making fractional time calculations easy.

Programming is one of the highest-volume use cases for seconds-to-minutes conversion. Unix timestamps (the number of seconds since January 1, 1970, 00:00:00 UTC) are the standard internal time representation for operating systems, databases, and network protocols. Calculating durations, logging time elapsed, or displaying human-readable time from raw second counts all require this conversion. To convert seconds to readable time: divide by 86,400 for days, take the remainder and divide by 3,600 for hours, take the remainder and divide by 60 for minutes, and the final remainder is seconds.

Video production and editing uses seconds constantly for clip duration, timeline positioning, and encoding settings. Frame counts at different frame rates convert to seconds: at 24 fps, 1 second = 24 frames; at 30 fps, 90 frames = 3 seconds; at 60 fps, 300 frames = 5 seconds. Video timecode is expressed as HH:MM:SS:FF (hours:minutes:seconds:frames), and converting seconds to this format requires the chain of divisions this calculator performs. A 1-hour documentary is 3,600 seconds = 86,400 frames at 24 fps.

Athletic timing at high precision uses seconds for finish times that are then expressed in minutes-and-seconds format for communication. A 100-meter sprint time of 9.58 seconds needs no conversion; a 10,000-meter run time of 1,602 seconds = 26 minutes 42 seconds. Marathon world record times are expressed as hours:minutes:seconds but recorded in total seconds for precise comparison across performances. Converting between these representations is a standard sports statistics operation.

Scientific measurements and instrument readings frequently produce values in seconds or milliseconds that need context. Reaction times are measured in milliseconds (200–300 ms = 0.2–0.3 seconds for average human reaction time). Signal propagation delays, chemical reaction times, and physical experiments produce results in seconds that may need to be expressed in minutes or milliseconds depending on context. The chain of conversion — seconds → minutes → hours — is the standard framework for making any second-based measurement human-interpretable.

Frequently asked questions

How many minutes is 1,000 seconds?

1,000 ÷ 60 = 16.667 minutes = 16 minutes and 40 seconds. Common: 60 seconds = 1 minute, 120 seconds = 2 minutes, 300 seconds = 5 minutes, 600 seconds = 10 minutes, 3,600 seconds = 60 minutes = 1 hour.

How many seconds in a day?

24 hours × 60 minutes × 60 seconds = 86,400 seconds per day. A week = 604,800 seconds. A year = 31,536,000 seconds (non-leap) or 31,622,400 seconds (leap year).

How many seconds is a 4-minute mile?

4 minutes = 4 × 60 = 240 seconds. The sub-4-minute mile barrier was broken by Roger Bannister on May 6, 1954 with a time of 3 minutes 59.4 seconds = 239.4 seconds. The current world record is 3:43.13 = 223.13 seconds.

Why are there 60 seconds in a minute and 60 minutes in an hour?

The base-60 (sexagesimal) number system originated with the ancient Babylonians, who used it because 60 is divisible by 2, 3, 4, 5, 6, 10, 12, 15, 20, and 30 — more factors than any smaller number. This made fractions especially easy to work with. The Babylonian time divisions were adopted by Greeks, transmitted through Islamic scholars, and became the universal standard in Europe, where they've remained for over 1,000 years.

In programming, what is a Unix timestamp and how do you convert it?

A Unix timestamp is the number of seconds elapsed since January 1, 1970, 00:00:00 UTC. The current timestamp (as of 2025) is approximately 1,750,000,000 seconds. To convert a difference between two timestamps to human-readable time: divide by 60 for minutes, by 3,600 for hours, by 86,400 for days. Libraries like JavaScript's Date object, Python's datetime module, and SQL's DATEDIFF handle these conversions programmatically.

People also use