Skip to content

Instantly share code, notes, and snippets.

@icco
Created March 17, 2014 21:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icco/9609177 to your computer and use it in GitHub Desktop.
Save icco/9609177 to your computer and use it in GitHub Desktop.
total_ms = 0
hours, minutes, seconds = '2:04:37'.split(':').map {|i| i.to_i }
seconds = seconds + (minutes * 60) + (hours * 3600)
total_ms = seconds * 1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment