aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers
diff options
context:
space:
mode:
authorFlorent <florent.git@zeteo.me>2022-01-09 17:21:45 +0100
committerChocobozzz <chocobozzz@cpy.re>2022-01-10 10:01:43 +0100
commit22c777863088f90c7f3f9df613b42952abab856d (patch)
tree4598391136ce36e8f94cd95604fe4aa80c4bb831 /server/helpers
parentf332d502d5d6a6c7ab62199c8b45f24e488f48e7 (diff)
downloadPeerTube-22c777863088f90c7f3f9df613b42952abab856d.tar.gz
PeerTube-22c777863088f90c7f3f9df613b42952abab856d.tar.zst
PeerTube-22c777863088f90c7f3f9df613b42952abab856d.zip
Give the ability to define python path for youtube-dl / yt-dlp
Diffstat (limited to 'server/helpers')
-rw-r--r--server/helpers/youtube-dl/youtube-dl-cli.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/helpers/youtube-dl/youtube-dl-cli.ts b/server/helpers/youtube-dl/youtube-dl-cli.ts
index 559f92984..293acff43 100644
--- a/server/helpers/youtube-dl/youtube-dl-cli.ts
+++ b/server/helpers/youtube-dl/youtube-dl-cli.ts
@@ -153,7 +153,8 @@ export class YoutubeDLCLI {
153 completeArgs = this.wrapWithIPOptions(completeArgs) 153 completeArgs = this.wrapWithIPOptions(completeArgs)
154 completeArgs = this.wrapWithFFmpegOptions(completeArgs) 154 completeArgs = this.wrapWithFFmpegOptions(completeArgs)
155 155
156 const output = await execa('python', [ youtubeDLBinaryPath, ...completeArgs, url ], processOptions) 156 const { PYTHON_PATH } = CONFIG.IMPORT.VIDEOS.HTTP.YOUTUBE_DL_RELEASE
157 const output = await execa(PYTHON_PATH, [ youtubeDLBinaryPath, ...completeArgs, url ], processOptions)
157 158
158 logger.debug('Runned youtube-dl command.', { command: output.command, ...lTags() }) 159 logger.debug('Runned youtube-dl command.', { command: output.command, ...lTags() })
159 160