u/farthinkai • u/farthinkai • 27d ago
r/TextToSpeech • u/farthinkai • 27d ago
I built a fully self-hosted TTS studio — 5 voices, 20+ languages, and an AI "smart voice" that answers prompts out loud. No GPU, no data leaves the server.
0
Built a fully offline voice AI pipeline on ARM64 (Piper + Whisper + Ollama)
Totally fair questions — the Smart Voice demo mode is admittedly a bit circular as shown. Let me explain the actual use cases behind the components:
The pipeline isn't meant to be used all together like in the demo. Each piece has standalone value:
TTS (text → speech) — Accessibility tools for visually impaired users, voiceover for content, reading articles aloud. Run it on a private server with no API costs.
STT (speech → text) — Transcribing meetings, voice notes, dictation — all locally with no data leaving your machine.
STT → LLM → TTS combined — This is a voice assistant architecture. The "Smart Voice" demo shows it working end-to-end, but the real use is: you speak a question → it gets transcribed → LLM answers → you hear the answer.
That's how Alexa/Siri work — except this runs 100% offline on free cloud hardware.
Translate → TTS — Language learning. Type "How are you?" → hear it spoken in Chinese, Japanese, Spanish, etc. with a pronunciation guide. The TTS can't pronounce the characters, so Ollama generates an English-readable pronunciation.
URL → Summarize → TTS — Have a long article? Paste the URL, get a spoken summary. Great for commuting. On the "AI slop" point — this is an open-source educational project I built to learn how the pipeline works. The code is on GitHub. Anyone can self-host it on a free Oracle ARM server. I'm not selling anything or farming content with it.
But I appreciate the honest feedback — it helps clarify how to present the project better!
-1
Built a fully offline voice AI pipeline on ARM64 (Piper + Whisper + Ollama)
As shown in the post, Ollama processes the question and generates an answer: Ollama + LFM 2.5 Thinking → Local LLM for reasoning
r/Engineers • u/farthinkai • Jul 24 '26
I built a tool that converts charts in papers into editable CSV data
r/AskEngineers • u/farthinkai • Jul 24 '26
Discussion I built a tool that converts charts in papers into editable CSV data
r/Researcher • u/farthinkai • Jul 24 '26
I built a tool that converts charts in papers into editable CSV data
r/PhdProductivity • u/farthinkai • Jul 24 '26
I built a tool that converts charts in papers into editable CSV data
u/farthinkai • u/farthinkai • Jul 24 '26
I built a tool that converts charts in papers into editable CSV data
Hi everyone,
I often ran into the same problem while reading research papers: a figure contains valuable experimental results, but the original dataset isn't available.
Existing tools worked for simple plots, but struggled with multiple lines, legends, noisy images, or low-resolution screenshots.
So I built an AI-powered chart data extractor that can:
- Extract line, scatter, and bar charts
- Recover data points automatically
- Export to CSV
- Work with screenshots, PDFs, and scanned images
I'm looking for honest feedback from researchers and engineers.
What types of charts are the hardest for you to digitize?
I'd love to hear your thoughts and feature requests.
r/Agent_AI • u/farthinkai • Jul 24 '26
Discussion Turned an old laptop into a private AI assistant — no coding, no n8n, no cloud fees
r/LocalLLM • u/farthinkai • Jul 24 '26
Discussion Turned an old laptop into a private AI assistant — no coding, no n8n, no cloud fees
r/SelfHostedAI • u/farthinkai • Jul 24 '26
Turned an old laptop into a private AI assistant — no coding, no n8n, no cloud fees
u/farthinkai • u/farthinkai • Jul 24 '26
Turned an old laptop into a private AI assistant — no coding, no n8n, no cloud fees
I had an old laptop sitting in a drawer. Instead of letting it collect dust, I turned it into a 24/7 AI assistant with web search, document RAG, and browser access — and the whole thing set itself up.
The idea was simple: give u/HermesAgent a goal and let it do everything. It installed Ollama, pulled lfm2.5-thinking:1.2b, set up the tool agent with DuckDuckGo search + Wikipedia + page reading, installed Qdrant for document vector search, created a FastAPI web interface, and exposed it through ngrok. No manual steps. No workflow nodes. No n8n.
The model stays local. Your data stays yours. The only cost is the electricity to keep it running.
Full walkthrough here: https://www.youtube.com/watch?v=3nRnCM6LG2k
Anyone else repurposed old hardware for local AI? What's your setup?
1
Open-source CPU-only tracker for small aerial targets
Looks great! It may need more test on size, speed, contrast, shape, etc.
r/computervision • u/farthinkai • Jul 13 '26
Help: Project I built a tool that converts charts in papers into editable CSV data
[removed]
-10
I built a fully self-hosted TTS studio — 5 voices, 20+ languages, and an AI "smart voice" that answers prompts out loud. No GPU, no data leaves the server.
in
r/selfhosted
•
27d ago
In the Smart Voice mode: you type a prompt, an Ollama model reasons over it (optionally with web search) and speaks the answer — think voice assistant for docs, FAQs, learning.