const fs = require('node:fs') const { execFileSync } = require('node:child_process') const path = require('node:path') const runtimeNames = ['msvcp140.dll', 'msvcp140_1.dll', 'vcruntime140.dll', 'vcruntime140_1.dll'] function copyIfDifferent(sourcePath, targetPath) { const source = fs.statSync(sourcePath) const targetExists = fs.existsSync(targetPath) if (targetExists) { const target = fs.statSync(targetPath) if (target.size === source.size && target.mtimeMs >= source.mtimeMs) { return false } } fs.copyFileSync(sourcePath, targetPath) return true } function readOption(name, fallback) { const index = process.argv.indexOf(`--${name}`) return index >= 0 && process.argv[index + 1] ? process.argv[index + 1] : fallback } function prepareFfmpegRuntime(targetPlatform = process.platform, targetArch = process.arch) { let packageRoot = '' try { packageRoot = path.dirname(require.resolve('ffmpeg-static/package.json')) } catch { return } const executable = targetPlatform === 'win32' ? 'ffmpeg.exe' : 'ffmpeg' const ffmpegPath = path.join(packageRoot, executable) if (!fs.existsSync(ffmpegPath)) { const installScript = path.join(packageRoot, 'install.js') console.log( `[prepare-electron-runtime] downloading ffmpeg-static for ${targetPlatform}-${targetArch}` ) execFileSync(process.execPath, [installScript], { stdio: 'inherit', env: { ...process.env, npm_config_platform: targetPlatform, npm_config_arch: targetArch } }) } if (!fs.existsSync(ffmpegPath)) { throw new Error(`ffmpeg-static runtime download failed: ${ffmpegPath}`) } if (targetPlatform === 'win32') return fs.chmodSync(ffmpegPath, 0o755) if (process.platform === 'darwin') { execFileSync('/usr/bin/codesign', ['--force', '--sign', '-', ffmpegPath], { stdio: 'ignore' }) } } function main() { prepareFfmpegRuntime(readOption('platform', process.platform), readOption('arch', process.arch)) if (process.platform !== 'win32') return const projectRoot = path.resolve(__dirname, '..') const sourceDir = path.join(projectRoot, 'resources', 'runtime', 'win32') const targetDir = path.join(projectRoot, 'node_modules', 'electron', 'dist') if (!fs.existsSync(sourceDir) || !fs.existsSync(targetDir)) return let copiedCount = 0 for (const name of runtimeNames) { const sourcePath = path.join(sourceDir, name) const targetPath = path.join(targetDir, name) if (!fs.existsSync(sourcePath)) continue if (copyIfDifferent(sourcePath, targetPath)) copiedCount += 1 } if (copiedCount > 0) { console.log(`[prepare-electron-runtime] synced ${copiedCount} runtime DLL(s) to ${targetDir}`) } } main()