Fix some tmp path issue
All checks were successful
ci / Image build (push) Successful in 3m7s
ci / Deployment (push) Successful in 26s

This commit is contained in:
Joris Bertomeu
2025-08-27 16:50:18 +02:00
parent dac21bbe23
commit 5dea3be1f1

View File

@@ -430,7 +430,7 @@ const parseMPDStream = async (mpdUrl) => {
// 2. Parser avec N_m3u8DL-RE pour avoir les bonnes données
const baseUrl = mpdUrl.substring(0, mpdUrl.lastIndexOf('/') + 1);
const downloaderPath = softwareService.getLocalBinFileInfo('downloader').path;
const parseCommand = `${downloaderPath} "${TMP_PATH}/tmp/manifest.mpd" --base-url "${baseUrl}" --skip-download -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:142.0) Gecko/20100101 Firefox/142.0"`;
const parseCommand = `${downloaderPath} "${TMP_PATH}/manifest.mpd" --base-url "${baseUrl}" --skip-download -H "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:142.0) Gecko/20100101 Firefox/142.0"`;
let stdout;
try {