refactor(tts): make cjs compatible and add sea config

This commit is contained in:
mitchell 2026-06-08 15:17:07 -04:00
parent 3235a08633
commit 39cb573619
2 changed files with 135 additions and 122 deletions

6
sea-config-tts.json Normal file
View file

@ -0,0 +1,6 @@
{
"main": "dist/tts.js",
"output": "dist/ttsc",
"useCodeCache": true,
"disableExperimentalSEAWarning": true
}

83
tts.ts
View file

@ -8,10 +8,11 @@ import { execa } from "execa";
import { Window } from "happy-dom";
import wrapAnsi from "wrap-ansi";
const start = Date.now();
async function main() {
const start = Date.now();
const { values: args } = parseArgs({
args: process.argv,
const { values: args } = parseArgs({
args: process.argv.slice(2),
options: {
wait: { type: "boolean" },
w: { type: "boolean" },
@ -19,13 +20,13 @@ const { values: args } = parseArgs({
u: { type: "string" },
},
strict: true,
allowPositionals: true,
});
allowPositionals: false,
});
const wait = args.wait ?? args.w;
const url = args.url ?? args.u;
const wait = args.wait ?? args.w;
const url = args.url ?? args.u;
let input = url
let input = url
? url
: await new Promise<string>((resolve) => {
let data = "";
@ -34,7 +35,7 @@ let input = url
process.stdin.on("end", () => resolve(data));
});
if (url !== undefined) {
if (url !== undefined) {
const result = await fetch(input.trim());
const window = new Window({ url: input.trim() });
const doc = window.document;
@ -46,45 +47,45 @@ if (url !== undefined) {
console.error("Unable to read web page.");
process.exit(1);
}
}
}
if (!input) {
if (!input) {
console.error("No input given.");
process.exit(1);
}
}
const home = os.homedir();
const cwd = `${home}/.ttsc/`;
const home = os.homedir();
const cwd = `${home}/.ttsc/`;
await execa({ cwd, shell: true, reject: false })`rm *.wav`;
await execa({ cwd, shell: true, reject: false })`rm *.wav`;
console.log(chalk.blue("Welcome to TTSC!"));
console.log(
console.log(chalk.blue("Welcome to TTSC!"));
console.log(
chalk.yellow(
"Beginning TTS processing... (This will take extra time the first time)",
),
);
);
const koko = execa({
const koko = execa({
cwd,
input: Buffer.from(input), // execa v6+ uses 'input'. Use 'stdin' for v5
input,
stdout: "pipe",
stderr: "inherit",
})`uv run -- python -u main.py`;
})`uv run -- python -u main.py`;
if (!wait) {
if (!wait) {
koko.catch(() => {});
koko.then(() => {
const stop = Date.now();
const duration = ((stop - start) / 1000).toFixed(2);
console.log(chalk.green(`\nProcessing finished: ${duration}s`));
});
}
}
let first = true;
const rl = createInterface({ input: koko.stdout, crlfDelay: Infinity });
let first = true;
const rl = createInterface({ input: koko.stdout, crlfDelay: Infinity });
for await (const line of rl) {
for await (const line of rl) {
const trimmed = line.trim();
if (!trimmed) continue;
@ -116,20 +117,20 @@ for await (const line of rl) {
stderr: "inherit",
})`mpv ${file}`;
}
}
}
await koko;
if (!wait) process.exit();
await koko;
if (!wait) process.exit();
const stop = Date.now();
const duration = ((stop - start) / 1000).toFixed(2);
console.log(chalk.green(`\nProcessing finished: ${duration}s`));
const stop = Date.now();
const duration = ((stop - start) / 1000).toFixed(2);
console.log(chalk.green(`\nProcessing finished: ${duration}s`));
console.log(chalk.yellow(`Combining audio with sox...`));
try {
console.log(chalk.yellow(`Combining audio with sox...`));
try {
await execa({ cwd, shell: true })`sox *.wav output.wav`;
console.log(chalk.green(`Playing audio from ${cwd}output.wav`));
} catch (err) {
} catch (err) {
if (err instanceof Object && "code" in err && err.code === "ENOENT") {
console.error("Sox not found. Unable to combine outputs.");
} else {
@ -137,11 +138,17 @@ try {
}
console.log(chalk.yellow(`Audio available in ${cwd}`));
process.exit();
}
}
await execa({
await execa({
cwd,
stdin: "ignore",
stdout: "inherit",
stderr: "inherit",
})`mpv --pause output.wav`;
})`mpv --pause output.wav`;
}
main().catch((err) => {
console.error(err);
process.exit(1);
});