refactor(core): normalize service naming across app runtime

This commit is contained in:
2026-02-17 19:00:27 -08:00
parent e38a1c945e
commit 1233e3630f
87 changed files with 2813 additions and 1636 deletions

View File

@@ -62,10 +62,7 @@ export class MediaGenerator {
fs.unlinkSync(filePath);
}
} catch (err) {
log.debug(
`Failed to clean up ${filePath}:`,
(err as Error).message,
);
log.debug(`Failed to clean up ${filePath}:`, (err as Error).message);
}
}
} catch (err) {
@@ -374,12 +371,7 @@ export class MediaGenerator {
"8",
);
} else if (av1Encoder === "libsvtav1") {
encoderArgs.push(
"-crf",
clampedCrf.toString(),
"-preset",
"8",
);
encoderArgs.push("-crf", clampedCrf.toString(), "-preset", "8");
} else {
// librav1e
encoderArgs.push("-qp", clampedCrf.toString(), "-speed", "8");