feat: support audio/mpeg for podcast and tts

This commit is contained in:
2025-06-04 16:18:33 +09:00
committed by Satsuki Akiba (aider)
parent 60799ae9b7
commit e9e733ce8a
3 changed files with 6 additions and 2 deletions

View File

@@ -86,5 +86,9 @@ export async function generateTTS(
.save(mp3FilePath);
});
// Wavファイルを削除
fs.unlinkSync(wavFilePath);
console.log(`TTS生成完了: ${itemId}`);
return path.basename(mp3FilePath);
}