DEV Community

Demir Ajvazi
Demir Ajvazi

Posted on

I'm Blind. I Built a Professional Video Editor. Here's Why.

Every time I opened Adobe Premiere, DaVinci Resolve, or any other professional video editor, I hit the same wall. Buttons without labels. Timelines that exist only as visual elements. Drag-and-drop workflows that assume you can see where you're dragging. For a sighted user, these tools are industry standard. For me — a blind developer using JAWS for Windows — they are practically unusable.
I got tired of waiting for someone else to fix this.
So I built Ultra Creative Suite.
What it is
Ultra Creative Suite is a professional video and audio editor for Windows, built from the ground up with one rule: every single feature must work equally for blind, low-vision, and sighted users. No "accessible mode" that hides features. No stripped-down alternative workflow. The same full editor, for everyone.
What it can do
Give it an audio file — a song, a narration, anything — and it will:

Analyze lyrics using a local AI model (Ollama / Qwen 2.5 14B)
Detect mood, season, and energy per lyric line
Automatically download matching stock footage from Pixabay
Apply per-lyric color grading via FFmpeg curves
Mix ambient sounds from a library of 1,279+ categorized clips
Render the finished video to 4K

All of this is controllable entirely through the keyboard. Every action is announced by the screen reader. No mouse required for any core workflow.
The technical decisions that made accessibility possible
The most important decision was the timeline. Most video editors use custom-drawn UI elements for their timelines — visually rich, but completely invisible to screen readers. I used a Win32 native ListView control instead. The same Windows control used in File Explorer. JAWS and NVDA read every clip natively, without plugins or workarounds: clip name, type, duration, position, and AI-generated audio description.
Every dialog has proper focus management. Every action produces a live region announcement. The entire application is navigable with standard keyboard shortcuts.
The demo
The demo video linked in the repository was created entirely by me — blind, using JAWS only. No sighted assistance at any point. AI analyzed the lyrics, selected the footage, applied the effects, mixed the audio, and rendered to 4K. I controlled every step through the keyboard.
Why open source
Because I'm not the only blind developer who has hit this wall. And I'm not the only blind person who wants to create. Ultra Creative Suite is GPL-3, fully open source, and designed to be a reusable foundation for accessible creative software.
If you've ever thought "why isn't there accessible software for X" — maybe this is the starting point.
Links
GitHub: github.com/demirajvazi10-max/Ultra-Creative-suite
If you want to support the project: ko-fi.com/ultra-creativesuite or paypal.me/demirajvazi10

Top comments (0)