Top "Duration" questions

The measure of continuance of any object or event within time.

how to convert minutes to days,hours,minutes

how to convert minutes into days hours and minutes in java ( we have a week here , 7 days ) public String timeConvert(…

java time duration
Convert seconds to human readable time duration

How would I best convert 90060 (seconds) to a string of "25h 1m"? Currently I'm doing this in SQL: SELECT IF( …

mysql time duration
YouTube Player API: How to get duration of a loaded/cued video without playing it?

I'm not able to get the correct video duration/length (in seconds) of a loaded/cued video via the getDuration() …

javascript youtube youtube-api duration youtube-javascript-api
How does '20 seconds' work in Scala?

How does the following compile: import scala.concurrent.duration._ val time = 20 seconds What is actually going on here?

scala duration
Groovy time durations

Hi I'm trying to calculate the difference (duration) between two times in Groovy. e.g. start = "2010-10-07T22:15:33.110+01:00" stop = "2010…

time groovy duration
How can I get the html5 audio's duration time

I have a html5 <audio> tag in page, but how can I know its duration time? <audio …

html audio duration
How to get the duration of an audio file in iOS?

NSDictionary* fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:filename error:nil] From the file attribute keys, you can get the date, size, etc. …

ios file audio nsdictionary duration
Java: How to convert a string (HH:MM:SS) to a duration?

i want to convert a string with a format of HH:MM:SS or MM:SS or SS into a …

java string duration
MySQL storing duration time - datatype?

I need to calculate the time a user spends on site. It is difference between logout time and login time …

mysql time types duration
Formatting a Duration in Java 8 / jsr310

I am transitioning a project from Joda-Time to java8's native time libraries, and I have run into a snag. …

java java-8 jodatime duration java-time