Skip to content

Commit

Permalink
fix: changed audio quality and buffer size
Browse files Browse the repository at this point in the history
  • Loading branch information
Casca0 committed May 7, 2024
1 parent d56639d commit 1765e27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ const client = new Client({
});

const player = new Player(client, {
skipFFmpeg: true,
skipFFmpeg: false,
connectionTimeout: 60000 * 10,
ytdlOptions: {
highWaterMark: 1 << 60,
quality: 'lowestaudio',
highWaterMark: 1 << 35,
quality: 'highestaudio',
},
});

Expand Down

0 comments on commit 1765e27

Please sign in to comment.