feat: ffmpeg下载来源更换

This commit is contained in:
手瓜一十雪
2025-05-11 11:23:43 +08:00
parent d67270f2f8
commit 055e43845e
2 changed files with 10 additions and 3 deletions

View File

@@ -12,7 +12,6 @@ import { Writable } from 'stream';
export function connectToNamedPipe(logger: LogWrapper, timeoutMs: number = 5000): Promise<{ disconnect: () => void }> {
return new Promise((resolve, reject) => {
if (process.platform !== 'win32') {
logger.log('只有Windows平台支持命名管道');
// 非Windows平台不reject而是返回一个空的disconnect函数
return resolve({ disconnect: () => { } });
}