Convert MINUTES to SECONDS, Free
Type any MINUTES value and see the SECONDS result instantly. No button press needed.
How to convert MINUTES to SECONDS
One minute is exactly 60 seconds, a relationship that goes back to Babylonian sexagesimal mathematics and has been standardized since 1967 when the second was defined based on cesium atom oscillations. Converting minutes to seconds is a multiplication by 60. Five minutes is 300 seconds, 90 minutes is 5,400 seconds, and 2.5 minutes is 150 seconds. The conversion is exact with no approximation involved.
This converter applies the formula instantly in JavaScript. It accepts decimal minutes (like 1.75 minutes for one minute and 45 seconds) and handles large values for use in programming, media duration calculations, sports timing, and scientific contexts where seconds are the standard time unit.
Enter the minutes value
Type the number of minutes to convert. Decimal values are accepted: 1.5 minutes converts to 90 seconds, and 0.25 minutes converts to 15 seconds.
Read the seconds result
The result appears immediately. The formula is: seconds = minutes x 60.
Use for your context
Common uses include media file duration (FFmpeg accepts seconds), timer programming, sleep() function arguments in code, and sports performance metrics.
Convert hours and minutes together
For a value in hours, minutes, and seconds: (hours x 3,600) + (minutes x 60) + seconds. For example, 1 hour 23 minutes 45 seconds = 3,600 + 1,380 + 45 = 5,025 seconds.
Frequently asked questions
How many seconds is 90 minutes (a standard film length)?
90 minutes x 60 = 5,400 seconds. Video timecodes and streaming platforms often express duration in seconds internally for consistent calculation.
What is 1 minute and 30 seconds as a decimal for this converter?
1 minute 30 seconds = 1.5 minutes (since 30 seconds is half a minute). Enter 1.5 to get 90 seconds.
Why do programming sleep() functions use seconds instead of minutes?
Seconds provide finer granularity for timing control. Sleep functions in Python, JavaScript, and other languages take seconds (or milliseconds) because delays shorter than one minute are common, and using a smaller base unit avoids the need for fractions.
How many seconds are in a day?
60 seconds x 60 minutes x 24 hours = 86,400 seconds per day. This is a commonly needed figure in programming, astronomy, and scheduling calculations.