Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
•
Windows Tipps & SecurityBatterietester für unter 10 Euro: So prüfen Sie leere Batterien schnell(24.09.2026 um 13:14 Uhr)
•
Windows Tipps & SecurityBentley bringt sein erstes Elektroauto auf den Markt(24.09.2026 um 13:49 Uhr)
••
Windows Tipps & SecurityAvocor integriert Korbyt-CMS in B-Series Displays(24.09.2026 um 13:05 Uhr)
•
Windows Tipps & SecuritydBTechnologies erweitert Opera-Familie um Nona-Serie(24.09.2026 um 13:15 Uhr)
•
Windows Tipps & SecurityJens Miedek wird Senior Vice President Sales bei Qvest(24.09.2026 um 13:20 Uhr)
•
Windows Tipps & SecurityBenQ bringt vier neue Boards mit KI-Beschleuniger(24.09.2026 um 13:33 Uhr)
••
Unix & Linux Server(中文) 小U同学更新:操作更少,秒回更快(24.09.2026 um 13:04 Uhr)
••
Windows Tipps & SecurityBatterietester für unter 10 Euro: So prüfen Sie leere Batterien schnell(24.09.2026 um 13:14 Uhr)
•
Windows Tipps & SecurityBentley bringt sein erstes Elektroauto auf den Markt(24.09.2026 um 13:49 Uhr)
••
Windows Tipps & SecurityAvocor integriert Korbyt-CMS in B-Series Displays(24.09.2026 um 13:05 Uhr)
•
Windows Tipps & SecuritydBTechnologies erweitert Opera-Familie um Nona-Serie(24.09.2026 um 13:15 Uhr)
•
Windows Tipps & SecurityJens Miedek wird Senior Vice President Sales bei Qvest(24.09.2026 um 13:20 Uhr)
•
Windows Tipps & SecurityBenQ bringt vier neue Boards mit KI-Beschleuniger(24.09.2026 um 13:33 Uhr)
••
Unix & Linux Server(中文) 小U同学更新:操作更少,秒回更快(24.09.2026 um 13:04 Uhr)
•
Intelligence View
⚡ tsecurity.de Intelligence

I built a screen recorder that turns raw captures into finished video stories — no install, no backend

I built a screen recorder that turns raw captures into finished video stories — no install, no backend Every product demo I recorded looked the same: a raw screen capture, no cursor highlights, no click effects, no way to show keyboard s…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




I built a screen recorder that turns raw captures into finished video stories — no install, no backend



Every product demo I recorded looked the same: a raw screen capture, no cursor highlights, no click effects, no way to show keyboard shortcuts. I would record, then spend time in an editor adding zoom, annotations, and subtitles. For a 2-minute demo.



So I built LivCapture — a browser-based screen recorder that combines cursor effects, click storytelling, keyboard shortcut badges, live zoom, webcam overlay, annotation, and Whisper-powered subtitles into a single recording. No install. No backend for the recording itself. Everything runs in the browser.






The problem



Most online screen recorders do one thing: capture your screen and hand you a WebM file. That is it. The result:




  • Viewers cannot see where you are clicking

  • Keyboard shortcuts are invisible (press Ctrl+K — but nobody sees it)

  • No zoom into important moments

  • Subtitles require a separate tool

  • Webcam is an afterthought, stuck in one corner



For product demos, support videos, and training content, raw capture is not enough. You need a finished video — one that guides the viewer attention.






What LivCapture does differently



LivCapture does not just record. It layers presentation effects on top of the capture while you record:








































Feature What it does
Cursor motion + click effects Ring, star, or glow on every click with optional sound
Keyboard shortcut badges Shows Ctrl+K, Cmd+S, etc. as video overlays — normal typing is not recorded
Live zoom Hold left click to zoom into a point, release to return
On-screen annotation Pen, highlight, circle, rectangle, arrow — the tool panel itself is not recorded
Webcam presenter layer Position your webcam in any corner, move it during recording with Ctrl+Alt+1/2/3/4
Automatic subtitles Local Whisper-powered transcription, download SRT or burn into video
MP4 / GIF / WebM export One recording, multiple output formats





The technical stack



Everything runs client-side. No server processes the video.




Browser (Chrome / Edge / Firefox)

getDisplayMedia() -> screen stream
getUserMedia() -> webcam + mic
MediaRecorder -> encode
Whisper (local) -> subtitles
Canvas overlay -> effects
FFmpeg.wasm -> MP4/GIF export









How cursor and click effects work



The core challenge: getDisplayMedia() gives you a raw video stream. There is no metadata about where the cursor is or when clicks happen.



LivCapture solves this with LivCapture Helper — a companion Chrome extension that captures cursor coordinates, click events, and keyboard shortcuts at the OS level with accurate screen mapping. The recorder then overlays effects on a canvas in real-time.




// Simplified: overlay effects on canvas during recording
const canvas = document.createElement("canvas");
const ctx = canvas.getContext("2d");
const videoTrack = screenStream.getVideoTracks()[0];

// Helper extension sends cursor position via postMessage
window.addEventListener("message", (e) => {
if (e.data.type === "cursor") {
cursorPos = { x: e.data.x, y: e.data.y };
}
if (e.data.type === "click") {
clickEffects.push({ x: e.data.x, y: e.data.y, time: Date.now() });
}
if (e.data.type === "shortcut") {
shortcutBadges.push({ keys: e.data.keys, time: Date.now() });
}
});

// Render loop: draw video frame + effects
function renderFrame() {
ctx.drawImage(videoElement, 0, 0);
drawClickEffects(ctx, clickEffects);
drawShortcutBadges(ctx, shortcutBadges);
drawCursor(ctx, cursorPos);
requestAnimationFrame(renderFrame);
}









Keyboard shortcut detection



We only show shortcuts that use modifier keys (Ctrl, Cmd, Alt, Shift). Regular typing is never captured — this is a screen recorder, not a keylogger.




document.addEventListener("keydown", (e) => {
if (e.ctrlKey || e.metaKey || e.altKey || e.shiftKey) {
const parts = [];
if (e.ctrlKey) parts.push("Ctrl");
if (e.metaKey) parts.push("Cmd");
if (e.altKey) parts.push("Alt");
if (e.shiftKey) parts.push("Shift");
parts.push(e.key.toUpperCase());

shortcutBadges.push({
keys: parts.join("+"),
timestamp: performance.now()
});
}
});









Whisper subtitles — locally



Subtitles run through Whisper, but the model runs locally in the browser. No audio leaves the device. After recording stops, the user can:




  1. Download the SRT file

  2. Burn subtitles directly into the final video

  3. Edit the transcript before rendering






Export pipeline






Recording stops
|
v
WebM (raw) -> Preview
|
v
+--------------+--------------+--------------+
| MP4 export | GIF export | WebM export |
| (FFmpeg | (FFmpeg | (native |
| .wasm) | .wasm) | MediaRecorder)|
+--------------+--------------+--------------+









The LivCapture Helper extension



The extension is optional but recommended. Without it, LivCapture still records — but cursor effects, click highlights, keyboard badges, and live zoom will not have accurate coordinates.




Without Helper:
- Screen recording
- Webcam overlay
- Microphone + system audio
- Annotation
- Whisper subtitles
- No cursor effects (no coordinate data)
- No click effects (no click detection)
- No keyboard shortcut badges
- No live zoom

With Helper:
- Everything above, plus:
- Accurate cursor motion
- Click effects with sound
- Keyboard shortcut badges
- Long-press zoom during recording









Who is using it





  • SaaS teams — product demos and feature walkthroughs


  • Support teams — bug reports and workflow recordings


  • Educators — training, onboarding, and how-to videos


  • LivChart users — turning data analysis into narrated video reports



LivCapture is part of the LivChart ecosystem. LivChart analyzes Excel, CSV, and SQL data with natural language prompts and creates dashboards. LivCapture turns those analyses into videos customers and teams can follow.






What is next



We are working on:





  • Google Drive / Dropbox integration — save recordings directly to your cloud storage and share via link


  • Embed SDK — a script tag that drops LivCapture recorder into any web app


  • Desktop app (Electron) — system-wide recording without browser limitations


  • Help desk mode — metadata capture (browser, OS, URL, console logs) for support tickets






Try it



Open livcapture.com, hit Start recording, and pick a recording source. That is it. No signup required for recordings up to 5 minutes.



Install the LivCapture Helper Chrome extension for the full experience — cursor effects, click storytelling, and keyboard shortcut badges.






LivCapture is built by Liv Yazılım, a software and consulting company based in Istanbul. We also build LivChart, an AI-powered data analysis platform.



If you found this interesting, we are live on Product Hunt — we would love your support.

CTI Threat Relationship Graph2 Knoten / 1 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Remote Code Execution (RCE) Defense
title: Detect Exploitation - I built a screen recorder that turns raw captures into finished video stories — no install, no backend
id: c8ac183f-a636-4f90-b957-c8dbb9177d5e
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "I built a screen recorder that" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich I built a screen recorder that turns raw.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten I built a screen recorder that turns raw captures into finished video stories — no install, no backend

Thematisch verwandte Begriffe: built, screen, recorder, that · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-97152 | Nanomsg versions 0.5-beta through 1.x before 1.2.3 has a remotely exploi…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel • Rechts: nächster Artikel • unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger • Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick