distubejs/ytdl-core

Cannot handle stream events

Closed this issue · 0 comments

Describe the bug

I'm trying to listen to error event something like following:

 const audioStream = ytdl(url, {});
 audioStream.pipe(fs.createWriteStream(outputFilePath)).on('error', (error: Error) => ...)

When an error occurs, it doesn't get caught by .on and causes the backend to crash instead. It also looks like other events emitted by stream.emit is not being handled correctly.