ac-timeconverter
v0.0.2
Published
Converts timestamps to seconds and vice versa
Readme
AC TimeConverter
This little helper converts timestamps to seconds and vice versa. Use it for transcoding or display purposes of videos and other media files.
Usage
const acts = require('ac-timeConverter')
Convert seconds to timestamp
let timeStamp = acts.timestampFromSeconds(300)
// -> 00:00:05Convert timestamp to seconds
let seconds = acts.secondsFromTimestamp('00:00:06')
// -> 6Duration between timestamps
let duration = acts.duration('00:00:03', '00:00:06')
// -> 3