82d61d1f93
Animated GIFs are transcoded to AVC because it is much smaller and thus also suitable for long/large animations. In addition, this commit adds support for more metadata fields such as frame rate, number of frames, file capture timestamp (unix milliseconds), media type, and software version. Support for SVG files can later be implemented in a similar way.
26 lines
577 B
Go
26 lines
577 B
Go
package entity
|
|
|
|
import "time"
|
|
|
|
const Day = time.Hour * 24
|
|
|
|
// TimeStamp returns the current timestamp in UTC rounded to seconds.
|
|
func TimeStamp() time.Time {
|
|
return time.Now().UTC().Truncate(time.Second)
|
|
}
|
|
|
|
// TimePointer returns a pointer to the current timestamp.
|
|
func TimePointer() *time.Time {
|
|
t := TimeStamp()
|
|
return &t
|
|
}
|
|
|
|
// Seconds converts an int to a duration in seconds.
|
|
func Seconds(s int) time.Duration {
|
|
return time.Duration(s) * time.Second
|
|
}
|
|
|
|
// Yesterday returns the time 24 hours ago.
|
|
func Yesterday() time.Time {
|
|
return time.Now().Add(-24 * time.Hour)
|
|
}
|