Skip to content

Commit

Permalink
Merge pull request #565 from infnibor/main
Browse files Browse the repository at this point in the history
Update example.application.yml
  • Loading branch information
appujet authored May 18, 2024
2 parents 257b694 + eb8202e commit 392075d
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions Lavalink/example.application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,22 @@ plugins:
allowDirectVideoIds: true # Whether just video IDs can match. If false, only complete URLs will be loaded.
allowDirectPlaylistIds: true # Whether just playlist IDs can match. If false, only complete URLs will be loaded.
# The clients to use for track loading. See below for a list of valid clients.
# Clients are queried in the order they are given (left-to-right)
clients: ["MUSIC", "ANDROID", "WEB", "TVHTML5EMBEDDED"]
# Clients are queried in the order they are given (so the first client is queried first and so on...)
clients:
- MUSIC
- ANDROID
- WEB
# You can configure individual clients with the following.
# Any options or clients left unspecified will use their default values,
# which enables everything for all clients.
WEB: # names are specified as they are written below under "Available Clients".
# This will disable using the WEB client for video playback.
playback: false
TVHTML5EMBEDDED:
# The below config disables everything except playback for this client.
playlistLoading: false # Disables loading of playlists and mixes for this client.
videoLoading: false # Disables loading of videos for this client (playback is still allowed).
searching: false # Disables the ability to search for videos for this client.
lavasrc:
providers: # Custom providers for track loading. This is the default
# - "dzisrc:%ISRC%" # Deezer ISRC provider
Expand Down

0 comments on commit 392075d

Please sign in to comment.