Command-line Spotify controller written in C# using .NET 5.
Contribution | Profile |
---|---|
Owner | Jessica Ward |
Contributor | Matthew Ward |
Contributor | srth21 |
Contributor | wbail |
Technical Consultant | Prolcons |
If you'd like to contribute, start by searching through the issues and pull requests to see whether someone else has raised a similar idea or question.
If you don't see your idea listed, and you think it fits into the goals of this guide, do one of the following:
If your contribution is minor, such as a typo fix, fork the project, commit your changes and then open a pull request to this repository.
If your contribution is major, such as a new guide, start by opening an issue first. That way, other people can weigh in on the discussion before you do any work.
This command will play the current track.
play
This command will pause the current track.
pause
This command will display the current track.
current
This command will skip the current track, playing the next track in the queue. It will then print information on the current track.
next
This command will play the previous track. It will then print information on the current track.
NOTE: This will not skip to the start of the current track, regardless of how far through the track you are. Use restart
for this purpose.
previous
This command starts the current track from the beginning. It will then print information on the current track.
restart
This command toggles shuffle on and off for the user's current player.
shuffle
Use the following optional parameters to specifically set a shuffle state:
shuffle on
shuffle true
shuffle off
shuffle false
The queue command allows the user to queue tracks, albums and artists. Use the following required parameters and queries to queue a specific entity (track, playlist, album or artist).
queue --track everything in its right place
queue --album bonito generation
queue --playlist cozy autumn vibes
When queueing an artist, the user has three options:
- Queue the artist's entire discography.
queue --artist system of a down --discography
queue --artist system of a down --d
- Queue the artist's "popular" tracks.
queue --artist wolf alice --popular
queue --artist wolf alice --p
- Queue the artist's "This Is x" playlist.
queue --artist kendrick lamar --essential
queue --artist kendrick lamar --e
This command will display a list of supported SpotNetCore commands.
help
This command will close the application.
exit
close
quit