A collection of additional Lavaplayer & LavaSearch Audio Source Managers and Lavalink Plugin.
- Spotify* playlists/albums/songs/artists(top tracks)/search results
- Apple Music* playlists/albums/songs/artists/search results(Big thx to ryan5453 for helping me)
- Deezer playlists/albums/songs/artists/search results(Big thx to ryan5453 and melike2d for helping me)
- Yandex Music playlists/albums/songs/artists/podcasts/search results(Thx to AgutinVBoy for implementing it)
- Flowery TSS (Thx to bachtran02 for implementing it)
*tracks are searched & played via YouTube or other configurable sources
Important
For LavaSrc v3 look here
Replace x.y.z with the latest version number
Snapshot builds are available in https://maven.topi.wtf/snapshots with the short commit hash as the version
Gradle
repositories {
maven {
url "https://maven.topi.wtf/releases"
}
}
dependencies {
implementation "com.github.topi314.lavasrc:lavasrc:x.y.z"
}
Maven
<repositories>
<repository>
<url>https://maven.topi.wtf/releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.topi314.lavasrc</groupId>
<artifactId>lavasrc</artifactId>
<version>x.y.z</version>
</dependency>
</dependencies>
For all supported urls and queries see here
To get a Spotify clientId & clientSecret you must go here and create a new application.
AudioPlayerManager playerManager = new DefaultAudioPlayerManager();
// create a new SpotifySourceManager with the default providers, clientId, clientSecret, countryCode and AudioPlayerManager and register it
playerManager.registerSourceManager(new SpotifySourceManager(null, clientId, clientSecret, countryCode, playerManager));
AudioPlayerManager playerManager = new DefaultAudioPlayerManager();
// create a new AppleMusicSourceManager with the standard providers, apple music api token, countrycode and AudioPlayerManager and register it
playerManager.registerSourceManager(new AppleMusicSourceManager(null, mediaAPIToken , "us", playerManager));
How to get media api token without Apple developer account
- Go to https://music.apple.com
- Open DevTools and go to the Debugger tab
- Search with this regex
"(?<token>(ey[\w-]+)\.([\w-]+)\.([\w-]+))"
in allindex-*.js
files - Copy the token from the source code
Alternatively, you can follow this guide
AudioPlayerManager playerManager = new DefaultAudioPlayerManager();
// create a new DeezerSourceManager with the master decryption key and register it
playerManager.registerSourceManager(new DeezerSourceManager("...");
How to get access token
- (Optional) Open DevTools in your browser and on the Network tab enable trotlining.
- Go to https://oauth.yandex.ru/authorize?response_type=token&client_id=23cabbbdc6cd418abb4b39c32c41195d
- Authorize and grant access
- The browser will redirect to the address like
https://music.yandex.ru/#access_token=AQAAAAAYc***&token_type=bearer&expires_in=31535645
. Very quickly there will be a redirect to another page, so you need to have time to copy the link. - Your accessToken, what is after
access_token
.
Token expires in 1 year. You can get a new one by repeating the steps above.
Yandex Music is very location-dependent. You should either have a premium subscription or be located in one of the following countries:
- Azerbaijan
- Armenia
- Belarus
- Georgia
- Kazakhstan
- Kyrgyzstan
- Moldova
- Russia
- Tajikistan
- Turkmenistan
- Uzbekistan
Else you will only have access to podcasts.
AudioPlayerManager playerManager = new DefaultAudioPlayerManager();
// create a new YandexMusicSourceManager with the access token and register it
playerManager.registerSourceManager(new YandexMusicSourceManager("...");
Get list of all voices and languages supported here
AudioPlayerManager playerManager = new DefaultAudioPlayerManager();
// create a new FloweryTTSSourceManager with a valid voice and register it
playerManager.registerSourceManager(new FloweryTTSSourceManager("..."));
This plugin requires Lavalink v4
or greater
To install this plugin either download the latest release and place it into your plugins
folder or add the following into your application.yml
Note For a full
application.yml
example see here
Replace x.y.z with the latest version number
lavalink:
plugins:
- dependency: "com.github.topi314.lavasrc:lavasrc-plugin:x.y.z"
repository: "https://maven.topi.wtf/releases"
Snapshot builds are available in https://maven.topi.wtf/snapshots with the short commit hash as the version
For all supported urls and queries see here
To get your Spotify clientId & clientSecret go here & then copy them into your application.yml
like the following.
To get your Apple Music api token go here
To get your Yandex Music access token go here
(YES plugins
IS AT ROOT IN THE YAML)
plugins:
lavasrc:
providers: # Custom providers for track loading. This is the default
# - "dzisrc:%ISRC%" # Deezer ISRC provider
# - "dzsearch:%QUERY%" # Deezer search provider
- "ytsearch:\"%ISRC%\"" # Will be ignored if track does not have an ISRC. See https://en.wikipedia.org/wiki/International_Standard_Recording_Code
- "ytsearch:%QUERY%" # Will be used if track has no ISRC or no track could be found for the ISRC
# you can add multiple other fallback sources here
sources:
spotify: false # Enable Spotify source
applemusic: false # Enable Apple Music source
deezer: false # Enable Deezer source
yandexmusic: false # Enable Yandex Music source
flowerytts: false # Enable Flowery TTS source
spotify:
clientId: "your client id"
clientSecret: "your client secret"
countryCode: "US" # the country code you want to use for filtering the artists top tracks. See https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
playlistLoadLimit: 6 # The number of pages at 100 tracks each
albumLoadLimit: 6 # The number of pages at 50 tracks each
applemusic:
countryCode: "US" # the country code you want to use for filtering the artists top tracks and language. See https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
mediaAPIToken: "your apple music api token" # apple music api token
# or specify an apple music key
keyID: "your key id"
teamID: "your team id"
musicKitKey: |
-----BEGIN PRIVATE KEY-----
your key
-----END PRIVATE KEY-----
playlistLoadLimit: 6 # The number of pages at 300 tracks each
albumLoadLimit: 6 # The number of pages at 300 tracks each
deezer:
masterDecryptionKey: "your master decryption key" # the master key used for decrypting the deezer tracks. (yes this is not here you need to get it from somewhere else)
yandexmusic:
accessToken: "your access token" # the token used for accessing the yandex music api. See https://github.com/TopiSenpai/LavaSrc#yandex-music
flowery.tts:
voice: "default voice" # (case-sensitive) get default voice from here https://api.flowery.pw/v1/tts/voices
translate: false # whether to translate the text to the native language of voice
silence: 0 # the silence parameter is in milliseconds. Range is 0 to 10000. The default is 0.
speed: 1.0 # the speed parameter is a float between 0.5 and 10. The default is 1.0. (0.5 is half speed, 2.0 is double speed, etc.)
audioFormat: "mp3" # supported formats are: mp3, ogg_opus, ogg_vorbis, aac, wav, and flac. Default format is mp3
LavaSrc adds the following fields to tracks & playlists in Lavalink
Field | Type | Description |
---|---|---|
albumName | ?string | The name of the album |
albumArtUrl | ?string | The url of the album art |
artistUrl | ?string | The url of the artist |
artistArtworkUrl | ?string | The url of the artist artwork |
previewUrl | ?string | The url of the preview |
isPreview | ?bool | Whether the track is a preview |
Field | Type | Description |
---|---|---|
type | Playlist Type | The type of the playlist |
url | ?string | The url of the playlist |
artworkUrl | ?string | The url of the playlist artwork |
author | ?string | The author of the playlist |
totalTracks | ?int | The total number of tracks in the playlist |
Type | Description |
---|---|
album | The playlist is an album |
playlist | The playlist is a playlist |
artist | The playlist is an artist |
recommendations | The playlist is a recommendations playlist |
spsearch:animals architects
(check out Spotify Search Docs for advanced search queries like isrc & co)sprec:seed_artists=3ZztVuWxHzNpl0THurTFCv,4MzJMcHQBl9SIYSjwWn8QW&seed_genres=metalcore&seed_tracks=5ofoB8PFmocBXFBEWVb6Vz,6I5zXzSDByTEmYZ7ePVQeB
(check out Spotify Recommendations Docs for the full query parameter list)- https://open.spotify.com/track/0eG08cBeKk0mzykKjw4hcQ
- https://open.spotify.com/album/7qemUq4n71awwVPOaX7jw4
- https://open.spotify.com/playlist/7HAO9R9v203gkaPAgknOMp
- https://open.spotify.com/artist/3ZztVuWxHzNpl0THurTFCv
(including new regional links like https://open.spotify.com/intl-de/track/0eG08cBeKk0mzykKjw4hcQ)
amsearch:animals architects
- https://music.apple.com/cy/album/animals/1533388849?i=1533388859
- https://music.apple.com/cy/album/for-those-that-wish-to-exist/1533388849
- https://music.apple.com/us/playlist/architects-essentials/pl.40e568c609ae4b1eba58b6e89f4cd6a5
- https://music.apple.com/cy/artist/architects/182821355
dzsearch:animals architects
dzisrc:USEP42058010
- https://deezer.page.link/U6BTQ2Q1KpmNt2yh8
- https://www.deezer.com/track/1090538082
- https://www.deezer.com/album/175537082
- https://www.deezer.com/playlist/8164349742
- https://www.deezer.com/artist/159126
ymsearch:animals architects
- https://music.yandex.ru/album/13886032/track/71663565
- https://music.yandex.ru/album/13886032
- https://music.yandex.ru/users/yamusic-bestsongs/playlists/701626
- https://music.yandex.ru/artist/701626
You can ready about all the available options here, a list of available voices is here
ftts://hello%20world
ftts://hello%20world?audio_format=ogg_opus&translate=False&silence=1000&speed=1.0