MD2 Converter
FileFlip converts MD2 files into 14 other formats entirely inside your browser, using Assimp compiled to WebAssembly. The MD2 file is never uploaded to a server: it is read off your disk, converted on your own machine, and saved back by the browser. There is no file-size limit and no account to create.
How do I convert an MD2 file?#
- Drop your MD2 file onto the converter at the top of this page, or click it to pick one from your computer.
- Choose the format you want out of it. FileFlip downloads the engine that conversion needs, once, and your browser caches it.
- Conversion starts the moment you pick the format, and the result is yours to download. The work happens in this tab, so nothing is uploaded and nothing is queued.
Is it safe to convert MD2 files online?#
Yes, because nothing is uploaded. FileFlip converts MD2 files inside the browser tab you already have open, using WebAssembly builds of the same engines a desktop converter would install. Your file is read from your own disk into the page's memory, and no request carrying it is ever made.
You do not have to take that on trust. Open your browser's network panel, run a conversion, and you will see the engine come down and your file go nowhere. There is no upload, no server-side copy, no retention window, and no account tied to what you converted.
How FileFlip works lists every engine, its version and its download size, and shows how to check for yourself that nothing leaves your machine.
What happens to a MD2 file#
FileFlip converts MD2 into 14 formats with Assimp, all of it inside the browser tab. Each conversion below names the engine it uses, what it downloads, and exactly what that conversion keeps or drops.
| Category | 3D Models |
|---|---|
| File extension | .md2 |
| FileFlip support | Read only, so it is a source rather than a target |
| Conversions available | 14 |
| Engines | Assimp |
| Downloaded to your browser | 11.2 MB on the first conversion, then cached |
What is an MD2 file?#
An MD2 file is a Quake II character or object model in which every animation frame stores a full snapshot of every vertex's position, quantized to a byte per axis, rather than any kind of skeleton.
Reach for MD2 only when working directly inside Quake II's modding pipeline or a source port that still loads it natively.
Convert an MD2 file to a modern interchange format when the model needs to move into current 3D software, since almost nothing outside Quake II tooling reads it directly.
The MD2 file format reference covers the specification, the programs that open one, and what each conversion keeps or drops.
MD2 questions people ask#
What is an MD2 file?
An MD2 file is the model format Quake II used for characters, monsters and pickup items, storing animation as a full vertex snapshot for every frame instead of a skeleton. id Software introduced it with the game in 1997, and it defined how a generation of vertex-animated 3D games moved.
Can MD2 files still be opened today?
Yes. Modern Quake II source ports like Yamagi Quake II load MD2 files exactly as the original game did, and general-purpose viewers such as Noesis and older tools like MilkShape 3D also read them for inspection or conversion.
Why does MD2 animation look choppier than modern game characters?
MD2 has no skeleton, so an animation is just a fixed sequence of whole-mesh vertex positions with interpolation between frames. That rules out the smooth blending and procedural motion a skeletal rig allows, which is the main reason id Software moved on to skeletal animation for Doom 3's MD5 format a few years later.