Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naporin0624/audiobot
https://github.com/naporin0624/audiobot
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/naporin0624/audiobot
- Owner: naporin0624
- Created: 2019-07-14T22:20:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-22T18:15:25.000Z (over 1 year ago)
- Last Synced: 2024-10-04T22:18:06.204Z (about 1 month ago)
- Language: TypeScript
- Size: 519 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Discord Audio Player
## 使い方
### モジュールをインストール
```shell
npm install
```or
```shell
yarn install
```### 開発環境用にnodemonを入れると楽かも
```shell
npm install --save nodemon
```or
```shell
yarn global add nodemon
```### コンフィグファイルを作る
```javascript
export default {
token: "YOUR-BOT-TOKEN",
niconico: {
email: "YOUR-EMAIL",
password: "YOUR-PASSWORD"
}
}
```### ビルド
```shell
npm run build
```or
```shell
yarn build
```### run bot
```shell
node dist/app.js
```## コマンド
### play
playコマンドを使うごとにリストに音楽がキューイングされます
```shell
play youtubeURL or niconicoURL or .mp3で終わるURL
```### stop
再生中の音楽を止めてキューを削除します
```shell
stop
```### pause
再生中の音楽を一時停止します
```shell
pause
```### resume
一時停止した音楽を再生します
```shell
resume
```おわり