Fix max buffer size for youtube-dl

pull/4813/head
Chocobozzz 2022-02-22 15:03:13 +01:00
parent 5301e7762b
commit 8296984de4
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export type YoutubeDLSubs = {
}[]
const processOptions = {
maxBuffer: 1024 * 1024 * 10 // 10MB
maxBuffer: 1024 * 1024 * 30 // 30MB
}
class YoutubeDLWrapper {