惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
月光博客
月光博客
T
Tailwind CSS Blog
小众软件
小众软件
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
B
Blog RSS Feed
博客园 - 司徒正美
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
博客园 - Franky
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
Apple Machine Learning Research
Apple Machine Learning Research

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built Voice2Sub: a local AI subtitle generator for vide...
Thế Hùng · 2026-05-21 · via DEV Community

Thế Hùng

I built Voice2Sub because many subtitle and transcription workflows still start with uploading a media file to a browser tool.

That works for short public videos. But it becomes awkward when the file is long, private, local, or part of a repeat editing workflow.

Voice2Sub focuses on a desktop workflow:

  1. Import a local video or audio file
  2. Generate subtitles or transcript text with Whisper AI recognition
  3. Review the result
  4. Export SRT, VTT, TXT, LRC or CSV

Why I built it as a desktop app

A lot of creators, educators, podcasters and journalists work with media that they do not always want to upload to a browser tool.

Examples:

  • private interviews
  • long lectures
  • course recordings
  • podcasts
  • internal meetings
  • YouTube or TikTok editing workflows
  • archived audio/video files

A local-first desktop app gives users more control over the file, the model, the output format and the processing workflow.

What Voice2Sub does

Voice2Sub is an AI subtitle generator and speech-to-text desktop app for video/audio files.

It currently focuses on:

  • generating subtitles from local video/audio
  • creating transcript text from speech
  • exporting SRT, VTT, TXT, LRC and CSV
  • running on Windows, macOS Apple Silicon and Linux
  • supporting CUDA acceleration on compatible Windows/Linux systems
  • supporting Metal acceleration on Apple Silicon Macs
  • giving users more control over model selection and transcription settings

Why not just use an online subtitle generator?

Online tools are convenient, but a desktop workflow is useful when:

  • the media file is large
  • the content is private
  • the user wants repeat processing
  • the user wants local model control
  • the user wants common subtitle export formats
  • the user works across Windows, macOS or Linux

Voice2Sub is not trying to replace every online video editor. It is focused on a local subtitle and transcript workflow.

What I learned while building it

The AI part is only one piece of the product.

A desktop AI tool also needs:

  • reliable model downloads
  • offline and interrupted download handling
  • safe retry/resume behavior
  • cross-platform packaging
  • clear error messages
  • GPU acceleration setup
  • update reliability
  • localization
  • clean export formats
  • a first-run experience that does not confuse users

One thing I underestimated was how important the model download experience is. If the user cannot download or select an AI model, the whole product feels broken even if the transcription engine itself works.

Current platforms

Voice2Sub currently supports:

  • Windows x64
  • macOS Apple Silicon
  • Linux x64

The app also supports hardware acceleration when available:

  • CUDA on compatible NVIDIA systems
  • Metal on Apple Silicon Macs

Current export formats

Voice2Sub can export:

  • SRT
  • VTT
  • TXT
  • LRC
  • CSV

These formats cover common subtitle, transcript, lyric and editing workflows.

What I want to improve next

I am considering:

  • batch subtitle generation
  • better subtitle preview/editing
  • translation workflow
  • speaker detection
  • better presets for YouTube, courses, podcasts and interviews
  • more polish around the first-run onboarding experience

Links

If you work with subtitles, transcripts, video editing, podcasts or course content, I would love feedback on the workflow.