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

推荐订阅源

WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
Vercel News
Vercel News
U
Unit 42
L
LangChain Blog
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
F
Fortinet All Blogs
小众软件
小众软件
I
InfoQ
P
Proofpoint News Feed
D
DataBreaches.Net
Martin Fowler
Martin Fowler
H
Help Net Security
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Ascynd – a local AI video clipper, written in Rust
niels_ · 2026-05-07 · via Hacker News - Newest: "AI"

Today we're shipping the public beta of Ascynd — a local AI video clipper that takes long-form video, picks the best moments, and exports them as captioned vertical clips. The whole pipeline runs on your machine. No upload step, no per-minute meter, no monthly credit cap.

Ascynd is written in Rust end-to-end — the GUI, the encoder, the inference glue, the segmentation logic. One codebase, one binary on Mac and Windows.

This is the writeup we wish we'd had when we started it.

Why we built it

We record long podcasts and lectures and wanted to repurpose them. The cloud tools in this category — Opus Clip, Vizard, Klap, Submagic — are competent. They're also expensive at any serious volume, and they all want you to upload your raw footage to their servers before clipping starts.

Pricing details vary, but the structural thing they share is metered usage. You pay per credit, where one credit is roughly one minute of source video. A creator who records four hours a week burns through an entry tier in a couple of sessions. The next tier is double or triple the cost, and the cap just moves up a step.

The other thing that bothered us — more values than economics — is that we didn't love uploading every raw recording we make to a third party. Some of what we record is rough, unedited, and full of things we'd rather not hand off. The vendors are reputable. The architecture is still "send us your data and we'll send a clip back." That's not the shape we wanted.

So we built it locally.

What Ascynd does

The pipeline is roughly:

  1. Transcribe the source video on-device with a Whisper-family model.
  2. Score every segment of the transcript with a few engagement signals — semantic completeness, hook strength, pacing, sentiment shifts.
  3. Cut the highest-scoring segments into 30–90 second clips.
  4. Detect and remove silence and obvious filler words ("um," "uh," repeated false starts).
  5. Reframe to vertical (9:16) using a saliency tracker so the speaker stays in frame.
  6. Render animated word-by-word captions in a few common styles, baked into the output.

Everything on that list runs on your machine. There's no server-side step. On first launch it pulls the model weights down, and after that it works offline.

The audio model and the encoder are the slow parts. With GPU acceleration the pipeline runs at a workable pace; on older machines without it, it still works — just slower.

Why an all-Rust stack

We didn't set out to write everything in Rust. We started with a Tauri prototype — Rust backend, JS frontend — and ended up consolidating onto Rust for the UI as well. The reasons, in roughly the order we felt them:

  • One codebase across platforms. Mac and Windows from a single project. No Electron, no ifdef forest. Linux is mostly a CI question after that.
  • Binary size. The current installer is small enough that early testers asked whether the download had failed. No Chromium runtime tagging along for the ride.
  • Performance ceiling. The encoder, the segmentation pass, and the ranking step all benefit from staying in tight native code without crossing a language boundary. The Rust↔JS bridges in the prototype were a real source of latency on long videos.
  • Memory footprint. AI clipping is memory-hungry by nature — the audio model alone is meaningful. Leaving headroom for the user mattered.
  • The UI story is more workable than we expected. We won't oversell this. UI in Rust is rougher than UI in React. But the iteration loop is livable, and we'd rather pay that cost once than pay the bundle and runtime cost on every install.

The downside: some things took longer to build than they would have in Electron. Anything that looked like "drop in a webview-friendly library and move on" was usually a small reimplementation. On the flip side, anything involving native OS bits — file pickers, drag-and-drop, codec setup — was easier than we'd feared.

Limitations

A few things Ascynd doesn't do well, or doesn't do yet:

  • No collaboration features. No shared dashboards, no multi-user libraries. Single-user desktop tool by design. If your workflow needs team review built in, this isn't the right shape.
  • B-roll generation, voice cloning, and translation are out of scope for now. Some cloud tools include those. We'd rather do clipping well than do everything mediocrely.
  • Linux is unofficial. It builds and runs there, but we're not testing every release on it. That'll improve.

Try the beta

Ascynd is in free public beta. Mac and Windows builds, no watermarked output during the beta. If you record long-form video and want to feel what a local-first version of this category is like, you can grab it at ascynd.io.