Translating any podcast episode for about a dollar: the architecture, and the one rule that shaped it A developer built a pipeline that translates podcast episodes into other languages for about a dollar per episode, using the podcaster's own published transcript rather than speech-to-text to avoid compounding errors. The system, which reuses an existing AI-narrated audiobook architecture, only works on episodes that provide a transcript, ensuring accuracy and trust. A friend of mine doesn't speak English. I do most of my podcast listening in English. Every so often I hit an episode worth passing on — an interview, some strange little history segment — and I want to send it to her, and I can't. A summary isn't the episode. A translated transcript isn't something you listen to on a walk. It turned out I'd been sitting on the pieces to fix this for months. This is the architecture I landed on, and the one design rule that shaped everything else. No code — just the shape of the thing and the decisions that mattered. I'm building a personal audio library as a side project. One thing already shipped was AI-narrated audiobooks : take a manuscript, translate it if needed, run it through a neural text-to-speech voice, stitch the result into a real audio file. Two managed services doing the heavy lifting — machine translation on one side, neural TTS on the other — with my own orchestration in between. A podcast episode is, structurally, a much shorter audiobook . That's the whole thing. I didn't need to build "podcast translation." I needed to point a pipeline I'd already written at a different kind of input. That reframing is the most useful architectural move I know: before building a feature, check whether it's a new shape or just a new input to a shape you already have. This was the second. Podcast RSS feed │ ▼ Find