feat: use audio path for episode player and tts file name

This commit is contained in:
2025-06-04 13:52:40 +09:00
committed by Satsuki Akiba (aider)
parent 2df3f0a8eb
commit 9cc3e1f66b
3 changed files with 15 additions and 17 deletions

View File

@ -66,5 +66,5 @@ export async function generateTTS(
fs.writeFileSync(filePath, audioBuffer);
console.log(`音声ファイル保存完了: ${filePath}`);
return filePath;
return path.basename(filePath);
}