convrtr
Start converting

27 August 2026

MLW vs. Other Course-Platform Video Wrappers: A Field Guide

MLW isn't a one-off — it's one instance of a pattern that shows up across a lot of course, training, and screen-recording apps that offer offline downloads. Once you've seen one, the others are recognizable. Here's the spectrum, roughly ordered from weakest to strongest.

What it doesHow to spot itWhat it takes to open
1. Renamed fileA normal video file with its extension swapped to something proprietaryThe bytes at the start of the file match a known container signature (e.g. ftyp for MP4) once you look past the extensionRename the extension back — no decryption of any kind
2. Shared static keyThe whole file (or the video stream inside a small wrapper) is encrypted with one key baked into every install of the app — MLW's tierThe file is unreadable as any known format, but every copy of the app carries an identical key you can recover once and reuse for every fileFind the container's marker/offset layout, then one decrypt call with the shared key
3. Per-device derived keyThe key is derived from something device-specific — a hardware ID, an account token, a locally-generated secret stored in the app's private storageFiles from two different devices/accounts don't decrypt with the same key, even from the same app versionRequires extracting the device- or account-specific secret from the device that downloaded the file, not just the app binary
4. Real DRMWidevine, FairPlay, or PlayReady — a hardware-backed license system with per-session keys negotiated against a license serverThe app requires an active network check or a hardware-secured decryption path (often visible as a 'protected content' warning if you try to screen-record it)Not addressed by tools like this one — see the legal writeup for why that's a meaningful line, not just a difficulty cliff

Where this matters in practice

Tier 1 and Tier 2 are both, functionally, obscurity rather than access control — the difference between them is just how many steps it takes to reverse, not whether reversing it means defeating something that was actually gating access. The legal distinction tracks this: a wrapper whose own app can decrypt entirely offline, using only what shipped in the install, was never really controlling access in the first place.

Tier 3 is a real step up — it means the app is doing something with per-installation state, which is a meaningfully different (and harder) reverse-engineering problem than "find the marker, decrypt with the shared key." Tier 4 is a different category of problem entirely, and out of scope for a tool built around finding a byte offset and calling crypto.subtle.

Where MLW sits, concretely

MLW is squarely Tier 2: one shared AES-128 key, no per-device component, extractable with nothing but the file and a browser. If you've got a wrapper from a different app that behaves the same way — opens instantly offline, no login check, and every copy of the app can decrypt every file — it's very likely the same tier, even if the byte layout is different.

Try the tool

Extract MP4 video from an MLW file

MLW files come from screen-recording and course-authoring apps that wrap a normal MP4 in a lightly encrypted container — not real DRM, just AES-GCM with a key baked into every install of the app. This finds the filename marker, reads the IV, and decrypts the video straight back to a playable MP4, entirely in your browser. Nothing is uploaded.

[ ARCHIVE & GUIDES ]

Related reading

All guides
┌┐
Aug 27, 20263 MIN READ

How MLW Video Encryption Actually Works

A byte-level walkthrough of the MLW container format: the Root marker, the filename block, the AES-GCM payload, and the one part of the layout nobody has documented.

#mlw#video#reverse-engineering
┌┐
Aug 27, 20263 MIN READ

Troubleshooting a Failed MLW Extraction

What each MLW extraction error message actually means, and what to check for each one — mapped directly from the tool's own error output.

#mlw#troubleshooting#video