Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove support for YouTube and Spotify #170

Merged
merged 2 commits into from
Aug 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
NODE_ENV=production
DISCORD_BOT_TOKEN=
DISCORD_CLIENT_ID=
SPOTIFY_CLIENT_ID=
SPOTIFY_CLIENT_SECRET=

# -------------------------
# Everything else is optional - continue if you know what you're doing
Expand Down
23 changes: 4 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@
</p>

<p align="center">
<a href="https://youtube.com">YouTube</a>
<a href="https://spotify.com">Spotify</a>
<a href="https://soundcloud.com/">SoundCloud</a>
<a href="https://music.apple.com/">Apple Music</a>
Expand Down Expand Up @@ -86,7 +82,10 @@

</details>

<br/>
<br />

> Note: We no longer support YouTube and Spotify due to their Terms of Service. We have a TypeScript rewrite planned that will focus heavily on local media libraries and playlists. Please don't create support inquiries for YouTube and Spotify streaming.

<h2 id="features">🤩 Features (non-exhaustive, always adding more)</h2>

- Easy installation
Expand Down Expand Up @@ -228,17 +227,10 @@ All configuration is done in `/config.js`. Multiple Discord servers are supporte
// Plugins/Music source extractors
plugins: {
fileAttachments: true,
youtube: true,
soundCloud: true,
appleMusic: true,
vimeo: true,
reverbNation: true,
// To disable Spotify:
// spotify: false,
spotify: {
clientId: process.env.SPOTIFY_CLIENT_ID,
clientSecret: process.env.SPOTIFY_CLIENT_SECRET
},
},

// Bot activity
Expand Down Expand Up @@ -331,12 +323,5 @@ Join our [support server](https://discord.gg/mirasaki) if you need any further a

> Open source, self-hosted, and MIT licensed, meaning you're in full control.

<br />
<h2 id="legal-notice">Notice Regarding YouTube Streaming</h2>

Please note that streaming from third-parties such as YouTube may break their Terms of Service. This may cause these third-parties to persue legal actions against these bots.

`mirasaki-music-bot` actively encourages users **not** to **opt-in** to streaming Youtube, this is however entirely up to the user. Thus, in case of any legal/physical/digital damages caused, the author of this project (Mirasaki) will not be responsible for it.

<br/>
<p align="center"><a href="https://github.com/Mirasaki/mirasaki-music-bot#mirasaki-music-bot"><img src="http://randojs.com/images/backToTopButton.png" alt="Back to top" height="29"/></a></p>
7 changes: 0 additions & 7 deletions config.example.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,10 @@ const config = {
// Plugins/Music source extractors
plugins: {
fileAttachments: true,
youtube: true,
soundCloud: false,
appleMusic: true,
vimeo: true,
reverbNation: true,
// To disable Spotify:
// spotify: false,
spotify: {
clientId: process.env.SPOTIFY_CLIENT_ID,
clientSecret: process.env.SPOTIFY_CLIENT_SECRET
}
},

// Bot activity
Expand Down
Loading
Loading