Skip to content

$currentTrackDuration

$currentTrackDuration will return the current track duration.

Usage

$currentTrackDuration[humanize?]

Parameters

Field Type Description Required
humanize? boolean convert MS to human-readable time. false

Example(s)

This will return the current track duration

1
client.command({
2
name: 'currentduration',
3
code: `
4
current track duration is:
5
$currentTrackDuration[true]
6
`
7
});