1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-26 04:02:51 +01:00
This commit is contained in:
Mikael Finstad 2023-04-09 00:11:44 +09:00
parent 759570ea8f
commit 18b7e9b7c3
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

View File

@ -33,7 +33,7 @@ function getFfPath(cmd) {
if (customFfPath) return join(customFfPath, exeName); if (customFfPath) return join(customFfPath, exeName);
if (isDev) return join('ffmpeg', `${platform}-${arch}`, exeName); if (isDev) return join('ffmpeg', `${platform}-${arch}`, exeName);
return join(window.process.resourcesPath, exeName); return join(process.resourcesPath, exeName);
} }
const getFfprobePath = () => getFfPath('ffprobe'); const getFfprobePath = () => getFfPath('ffprobe');