mirror of
https://github.com/danbulant/discord.js
synced 2026-05-26 21:42:05 +00:00
Fix audio playing stupidly fast - fixes #689
This commit is contained in:
parent
5dd25ac1f1
commit
02b257e1fc
2 changed files with 2 additions and 1 deletions
File diff suppressed because one or more lines are too long
|
|
@ -20,6 +20,7 @@ class FfmpegConverterEngine extends ConverterEngine {
|
||||||
'-i', '-',
|
'-i', '-',
|
||||||
'-f', 's16le',
|
'-f', 's16le',
|
||||||
'-ar', '48000',
|
'-ar', '48000',
|
||||||
|
'-ac', '2',
|
||||||
'-ss', String(seek),
|
'-ss', String(seek),
|
||||||
'pipe:1',
|
'pipe:1',
|
||||||
], { stdio: ['pipe', 'pipe', 'ignore'] });
|
], { stdio: ['pipe', 'pipe', 'ignore'] });
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue