Audio Feed
A personal podcast generator. It turns articles and RSS sources into audio you can listen to in any podcast app — read aloud, or discussed by two voices. Speech is synthesised with Gemini 3.8 Flash TTS.
Two ways to hear an article
-
Direct read
One narrator reads the article straight through, announcing the title, author and publication date first. Clear and uninterrupted — the equivalent of the author reading their own piece to you.
Default voice: Charon
-
Deep dive
Two voices discuss the article: an expert and a curious interviewer who asks the obvious questions. Useful when you want the argument examined rather than recited.
Default voices: Kore and Puck
Subscribing
Every listener gets a private feed token. That token is the credential — podcast apps cannot log in, so anyone holding your feed URL can read your feed. Treat it like a password and do not share it.
-
Everything, newest first
https://audio-feed.paulkinlan-ea.deno.net/feed/your-token/master.xml -
One source, read aloud
https://audio-feed.paulkinlan-ea.deno.net/feed/your-token/source/direct.xml -
One source, as a discussion
https://audio-feed.paulkinlan-ea.deno.net/feed/your-token/source/deepdive.xml
Paste one into Pocket Casts, Apple Podcasts, Overcast or anything else that accepts an RSS URL. Episodes appear once synthesis finishes.
Send an article to audio
Give it a link and it will be queued, synthesised, and added to your feed. Accounts need admin approval before anything is generated, because synthesis is the part that costs money.
Subscribe to an RSS feed
Follow an entire publication. Recent posts will be queued and converted to audio as they are published.
Prefer the command line?
The same request, without the form:
curl -X POST https://audio-feed.paulkinlan-ea.deno.net/api/ingest \
-H 'content-type: application/json' \
-H 'x-feed-token: YOUR_TOKEN' \
-d '{"url":"https://example.com/an-article","mode":"direct"}'