mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 22:11:53 +00:00
voice: set seek parameter before input (#2993)
This commit is contained in:
parent
8a76cc5c72
commit
0bde9ca2c5
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ class BasePlayer extends EventEmitter {
|
|||
const isStream = input instanceof ReadableStream;
|
||||
|
||||
const args = isStream ? FFMPEG_ARGUMENTS.slice() : ['-i', input, ...FFMPEG_ARGUMENTS];
|
||||
if (options.seek) args.push('-ss', String(options.seek));
|
||||
if (options.seek) args.unshift('-ss', String(options.seek));
|
||||
|
||||
const ffmpeg = new prism.FFmpeg({ args });
|
||||
const streams = { ffmpeg };
|
||||
|
|
|
|||
Loading…
Reference in a new issue