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

推荐订阅源

D
Docker
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
The GitHub Blog
The GitHub Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
博客园_首页
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
T
The Blog of Author Tim Ferriss
The Cloudflare Blog

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 an AI video clip finder that runs 100% in your br...
Oleksandr · 2026-06-16 · via DEV Community

Every time I used Opus Clip or Vidyo.ai, the same thought hit me:
I’m paying $20/month to upload my video to someone else’s server,
wait in a queue, and hope their AI finds something useful.

So I built an alternative that runs entirely in the browser.
No file uploads. No subscriptions. No server costs on my end.
The result is ClipGG’s AI Video Highlights tool —
and in this post I’ll walk through exactly how it works technically.


The core problem I was solving

Finding highlights in a long video is genuinely hard to automate well.
The expensive approach: transcribe with Whisper, feed text to GPT-4,
profit. But that requires a backend, API costs, and user uploads.

I wanted zero server involvement.
That meant doing everything with browser APIs.


What actually runs in the browser

The pipeline has four stages:

1. File reading — no upload needed

const arrayBuffer = await file.arrayBuffer()
// The file never leaves the device.
// ArrayBuffer is passed directly to Web Audio API.

2. Audio analysis — Web Audio API + Web Worker

I use OfflineAudioContext to decode audio faster than real-time,
then downsample to 8000–11025 Hz before analysis.
This reduces RAM usage from ~115MB to ~19MB for a 10-minute video.

// Decode in a Web Worker so the UI never freezes
const tempCtx = new OfflineAudioContext(1, 44100, 44100)
const audioBuffer = await tempCtx.decodeAudioData(arrayBuffer)

// Downsample manually — OfflineAudioContext does NOT resample automatically
function downsample(channelData, originalRate, targetRate) {
  const ratio = originalRate / targetRate
  const output = new Float32Array(Math.floor(channelData.length / ratio))
  for (let i = 0; i < output.length; i++) {
    const start = Math.floor(i * ratio)
    const end = Math.min(Math.floor((i + 1) * ratio), channelData.length)
    let sum = 0
    for (let j = start; j < end; j++) sum += channelData[j]
    output[i] = sum / (end - start)
  }
  return output
}

3. Scoring — three audio signals

For each 500ms window I compute:

  • RMS (Root Mean Square) — average energy/loudness
  • ZCR (Zero Crossing Rate) — distinguishes speech from noise
  • Volume Peak — catches sudden loud moments

Then I do relative normalization so a quiet podcast
and a loud gaming stream are scored fairly against themselves:

// Relative normalization — key insight
const normalizedRms = (seg.rms - globalMinRms) / (globalMaxRms - globalMinRms)

Different content types use different weights:

Mode RMS ZCR Peak
Gaming 0.20 0.35 0.20
Podcast 0.50 0.05 0.20
Funny 0.15 0.20 0.35
General 0.30 0.20 0.25

4. Clip selection — diversity + peak centering

The selector groups high-scoring segments into zones,
finds the peak moment in each zone, and centers a 30–90 second
clip around it. A diversity radius of 12 seconds prevents
three clips from covering the same moment.

const combinedSignal =
  (seg.score ?? 0) +
  (seg.energyChange ?? 0) * 2.0 +
  (seg.volumePeak ?? 0) * 1.5

// Center the clip around the strongest combined signal,
// not just the loudest sustained section


The Safari problem I didn’t expect

Safari on iOS can’t decode video containers
via AudioContext.decodeAudioData().
It only accepts clean audio files.

The fix: detect iOS and pre-extract audio with FFmpeg.wasm
before passing it to the Web Audio API:

const isIOS = /iPhone|iPad|iPod/i.test(navigator.userAgent)

if (isIOS) {
  await ffmpeg.exec([
    '-i', 'input_video',
    '-vn',
    '-acodec', 'pcm_s16le',  // WAV — guaranteed to work on all iOS versions
    '-ar', '44100',
    '-ac', '1',
    'audio.wav'
  ])
  // Pass audio.wav to Web Audio instead of the original video
}

WAV/PCM is uncompressed and works reliably on every iOS version.
AAC containers are not.


Export — FFmpeg.wasm with stream copy

Once highlights are found, FFmpeg.wasm cuts the clips:

// Fast path: H.264 + AAC + MP4 = stream copy, no re-encoding
// A 90-second clip exports in ~2–3 seconds
await ffmpeg.exec([
  '-ss', String(clip.start),
  '-i', 'input',
  '-t', String(clip.end - clip.start),
  '-c', 'copy',               // copy bytes, don't re-encode
  '-avoid_negative_ts', 'make_zero',
  '-movflags', '+faststart',
  outputName
])

Non-standard formats (MOV, MKV, AV1) get converted to MP4 first
before the analysis pipeline runs. This also fixed all the
“file won’t export” bugs from iPhone footage.


What I learned

OfflineAudioContext doesn’t resample.
I assumed new OfflineAudioContext(1, length, 8000)
would give me 8kHz audio. It doesn’t.
You get whatever sample rate the source file has.
Downsampling has to be manual.

Transfer, don’t copy ArrayBuffers.
worker.postMessage({ arrayBuffer }, [arrayBuffer])
transfers ownership with zero memory copy.
Without the second argument you’re doubling RAM usage.

-ss before -i for stream copy, after for re-encode.
This one cost me an hour. For -c copy, seek before input
for speed. For re-encoding, seek after input for frame accuracy.


Try it

The tool is live and free at:
👉 https://clipgg.uk/en/ai-video-highlights

Drop a video, pick a mode (Gaming / Podcast / Funny / General),
and get three highlight clips with timestamps in about 30 seconds.

No account. No upload. Works on desktop Chrome, Firefox,
and now iOS Safari too.

Curious what others think about the audio scoring approach —
would love feedback on the algorithm in the comments.