Track typedefs
track
Parameter | Type | Description |
---|---|---|
track | string | The base64 encoded track. |
artworkUrl | string | The artwork url of the track. |
sourceName | TrackSourceTypes | The track source name. |
title | string | The title of the track. |
identifier | string | The identifier of the track. |
author | string | The author of the track. |
duration | number | The duration of the track. |
isrc | string | The ISRC of the track. |
isSeekable | boolean | If the track is seekable. |
isStream | boolean | If the track is a stream. |
uri | string | The uri of the track. |
thumbnail | string | null | The thumbnail of the track or null if it's a unsupported source. |
requester | User | ClientUser | The user that requested the track. |
displayThumbnail() | function as displayThumbnail() | Displays the track thumbnail with optional size or null if it's a unsupported source. |
pluginInfo | TrackPluginInfo | Additional track info provided by plugins. |
customData | Record<string, string> | Add your own data to the track. |
displayThumbnail()
- Example usage
js console.log(track.displayThumbnail());
unresolvedTrack
Unresolved tracks can't be played normally, they will resolve before playing into a Track.
Parameter | Type | Description |
---|---|---|
title | string | The title to search against. |
author | string | The author to search against. |
duration | number | The duration to search within 1500 milliseconds of the results from YouTube. |
resolve() | function returns Promise<void > | Resolves into a Track. |
trackData
Parameter | Type | Description |
---|---|---|
encoded | string | The track information. |
info | trackDataInfo{} | The detailed information of the track. |
pluginInfo | Record<string, string> | Additional track info provided by plugins. |
trackDataInfo
Parameter | Type |
---|---|
identifier | string |
isSeekable | boolean |
author | string |
length | number |
isrc | string |
isStream | boolean |
title | string |
uri | string |
artworkUrl | string |
sourceName | TrackSourceName |