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,7 +86,7 @@ app.get("/podcast_audio/*", async (c) => {
const file = Bun.file(audioFilePath);
if (await file.exists()) {
const blob = await file.arrayBuffer();
return c.body(blob, 200, { "Content-Type": "audio/wav" });
return c.body(blob, 200, { "Content-Type": "audio/mpeg" });
}
return c.notFound();
});

View File

@ -38,7 +38,7 @@ export async function updatePodcastRSS() {
<category>${channelCategories}</category>
<language>${channelLanguage}</language>
<ttl>${channelTTL}</ttl>
<enclosure url="${fileUrl}" length="${fileSize}" type="audio/wav" />
<enclosure url="${fileUrl}" length="${fileSize}" type="audio/mpeg" />
<guid>${fileUrl}</guid>
<pubDate>${pubDate}</pubDate>
</item>

View File

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