$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
1client.command({2 name: 'currentduration',3 code: `4 current track duration is:5 $currentTrackDuration[true]6 `7});
Thie will return the current track duration
1module.exports = [{2 name: "currentduration",3 code: `4 current track duration is:5 $currentTrackDuration[true]6 `7}]