Skip to content
Snippets Groups Projects
Unverified Commit 5322589d authored by Chocobozzz's avatar Chocobozzz
Browse files

Use custom ffmpeg path in youtube dl

parent c4710631
No related branches found
No related tags found
No related merge requests found
...@@ -48,6 +48,11 @@ function downloadYoutubeDLVideo (url: string, timeout: number) { ...@@ -48,6 +48,11 @@ function downloadYoutubeDLVideo (url: string, timeout: number) {
const options = [ '-f', 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best', '-o', path ] const options = [ '-f', 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best', '-o', path ]
if (process.env.FFMPEG_PATH) {
options.push('--ffmpeg-location')
options.push(process.env.FFMPEG_PATH)
}
return new Promise<string>(async (res, rej) => { return new Promise<string>(async (res, rej) => {
const youtubeDL = await safeGetYoutubeDL() const youtubeDL = await safeGetYoutubeDL()
youtubeDL.exec(url, options, processOptions, err => { youtubeDL.exec(url, options, processOptions, err => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment