Skip to content

JNX03/Flowtake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

720 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flowtake app icon

Record locally. Turn the capture into a polished product demo.

Flowtake is a free, MIT-licensed desktop screen recorder and editor with automatic zoom and pan, cursor effects, a timeline, and local MP4 export.

Latest release Total downloads MIT license Windows is the primary platform; macOS and Linux are previews

QuickstartDownloadsPrivacyDevelopmentContributing


What Flowtake does

Flowtake keeps the recording workflow in one desktop app:

  • Capture a full display, one window, or a custom area.
  • Add camera, microphone, and supported system-audio sources.
  • Generate zoom and pan motion from cursor activity, then tune it on the timeline.
  • Trim and split clips; style cursor and click feedback; add masks, backgrounds, overlays, audio, and subtitles.
  • Save projects locally and export edited video as an AVC/H.264 MP4 through Mediabunny.
  • Experiment with separate app layers and scene layouts for multi-app technical demos.

The desktop recorder and editor are free to use, inspect, modify, and redistribute under the MIT License.

60-second quickstart

  1. Install with winget install --id JNX03.Flowtake --exact on Windows, or download the build for your OS from the latest release.
  2. Open Flowtake, choose Record, then select Screen, Window, or Area. Add a camera, microphone, or system-audio source if needed.
  3. Start recording and use the compact recorder controls to pause or stop.
  4. Open the saved project from Library, adjust the timeline and effects, then choose Export to render an MP4.

Your OS may ask for screen-recording, camera, or microphone permission on first use. Current platform-signing limitations can also produce a Windows SmartScreen or macOS Gatekeeper warning; see the status note below before proceeding.

Download and platform status

All published artifacts are on the official GitHub Releases page.

Platform Published artifacts Current support boundary
Windows 10/11 x64 .exe, .msi, portable .zip Primary development and validation target. FFmpeg is bundled.
macOS 10.15+ Universal .dmg, portable .zip Preview. Apple Silicon and Intel builds are published; expect rough edges and report reproducible issues. FFmpeg is bundled.
Linux x64 .AppImage, .deb, .rpm, portable .tar.gz Preview. Screen capture requires X11 or XWayland; pure Wayland capture is not supported. The .deb and .rpm declare required system packages.

WinGet (Windows)

Flowtake is published in the Microsoft WinGet community repository:

winget install --id JNX03.Flowtake --exact

The WinGet package installs the same unsigned MSI published on the official release page, so the signing boundary below still applies.

Platform signing: the current Windows artifacts are not Authenticode-signed. The macOS artifacts are ad-hoc signed, not signed with an Apple Developer ID, and not notarized. SmartScreen or Gatekeeper may warn. Download Flowtake only from this repository's release page, and do not bypass a warning for a copy obtained elsewhere.

Product highlights

Capture

  • Full display, selected window, and custom-area recording
  • Optional camera and microphone capture
  • System-audio selection where the operating system exposes a compatible source
  • Multi-monitor selection and recording quality controls
  • Experimental separate app-layer capture for technical workflows

Edit

  • Automatic cursor-driven zoom and pan
  • Timeline controls for clips, zooms, cursor styling, click effects, and drawn cursor paths
  • Masks and blur for redaction
  • Backgrounds, image/shape overlays, audio tracks, and subtitles
  • Camera layout and background-blur controls
  • Local project library with save and reopen support

Export

  • Local AVC/H.264 MP4 rendering through Mediabunny
  • Resolution, 30/60 fps, and output-quality controls
  • Video-only edited export in v1.6.0; microphone, system, and timeline audio are not muxed into the final MP4

Privacy and open-source boundary

  • Recordings, project files, and ordinary exports are stored locally. Flowtake does not include cloud project sync.
  • The current Tauri build has Sentry disabled and no active product-analytics integration.
  • Flowtake can make network requests for GitHub release checks. Explicit network features include YouTube upload and RTMP live streaming; some camera effects fetch model assets when used.
  • Choosing a network feature sends data to the service you configure. Review that service's terms before connecting an account or stream destination.
  • The desktop recorder/editor in this repository remains MIT licensed. Optional services do not revoke or paywall the existing open-source functionality.

For vulnerability reporting, follow the private process in SECURITY.md.

Optional: Release Studio

Teams that want human-assisted production for a technical launch can visit Flowtake Release Studio. It is a separate, optional service; Flowtake's desktop recorder and editor remain the primary open-source product.

Maintainers planning their own release can use the free six-beat developer-tool demo storyboard template before recording. The guide includes a copyable brief, safe-capture exclusions, and a clearly labelled Flowtake v1.6.0 pre-production example.

Through July 23, 2026, Flowtake will publicly reply with a no-obligation six-beat storyboard to up to the first three maintainers who share a complete, publicly documented developer-tool workflow. No separate Flowtake signup, footage, or payment is required.

Development

Prerequisites

Run locally

git clone https://github.com/JNX03/Flowtake.git
cd Flowtake
npm ci

Release artifacts bundle FFmpeg. For local native development, prepare the sidecar when it is absent:

# Windows
powershell -ExecutionPolicy Bypass -File scripts/download-ffmpeg.ps1
# macOS or Linux
bash scripts/download-ffmpeg.sh

On macOS, build the native ScreenCaptureKit helper as well:

npm run test:macos-capture
npm run build:macos-capture

Then start the native app and frontend:

npm run dev

Useful checks:

npm test
npm run lint
npm run build:frontend
cargo check --manifest-path src-tauri/Cargo.toml --locked

Architecture

Flowtake combines a Tauri v2 Rust backend with a React 19 interface. Redux Toolkit manages editor state, PixiJS composites preview and export frames, Mediabunny encodes and muxes the edited AVC MP4, and Rust copies the completed output.mp4 into the local export folder. On macOS 12.3+, a Swift ScreenCaptureKit helper writes fixed-cadence H.264 through the native media stack and cleanly falls back to FFmpeg/AVFoundation when unavailable. The editor bounds Retina preview textures while exports retain source resolution. FFmpeg remains bundled for compatibility capture and native media utilities.

The native app uses separate windows for the launcher/editor, recorder controls, exporter, source pickers, and annotations. Start with the architecture docs or the development guide for a deeper tour.

Contributing

Issues and pull requests are welcome. Please read CONTRIBUTING.md and the Code of Conduct before submitting a change.

The most useful reports include the operating system, Flowtake version, capture source, exact reproduction steps, and relevant logs. Linux reports should also say whether the session is X11, XWayland, or pure Wayland.

License

Flowtake is licensed under the MIT License.


Made with Rust, React, and a lot of screen recordings.
If Flowtake helps, a GitHub star or a reproducible bug report both move the project forward.