PLY to SPLAT Converter Online
Convert Gaussian Splatting PLY files to SPLAT format — smaller files, broad web viewer support.
Last updated Mar 2026
- 1Upload
- 2Convert
- 3Download
Drag PLY (Gaussian Splatting) file here, or click to upload
What You Should Know
Why Convert PLY to SPLAT?
SPLAT is the widest-supported format for web-based Gaussian Splatting viewers. The antimatter15 viewer, many Three.js plugins, and numerous online 3DGS demos use SPLAT as their primary input format. If your goal is to share a Gaussian Splatting scene with someone who already has a favorite web viewer, converting PLY to SPLAT gives you the best chance of compatibility. The file size also drops to roughly 50% of the original PLY, making it more practical to distribute.
What Is Lost During PLY to SPLAT Conversion?
SPLAT format does not support spherical harmonics. During conversion, all SH coefficients (the data that encodes view-dependent color shifts) are discarded. Each Gaussian is stored with only a single base color derived from the SH DC component. The practical effect is that the scene looks the same from any angle — highlights do not shift as you orbit. For many real-world scenes (outdoor captures, architecture, portraits), this loss is subtle. For scenes with strong specular surfaces or indoor lighting, the difference can be noticeable.
SPLAT vs. SPZ: Which Should You Use?
If your audience is using web viewers that support both formats, prefer SPZ: it is smaller (10x vs. PLY, compared to SPLAT's 2x) and preserves spherical harmonics. Use SPLAT when you know the target viewer or tool accepts only SPLAT, or when maximum compatibility across existing tools is the priority. SPLAT has been the de-facto web format since 2023 and is supported by a larger number of existing viewers than SPZ. This converter accepts Gaussian Splatting PLY only — not standard mesh PLY. If your PLY file contains vertex geometry (not Gaussian parameters), use our mesh converter tools. See /formats/ply-3dgs for an explanation of the difference.
PLY vs SPLAT
| Feature | PLY | SPLAT |
|---|---|---|
| File Size | Large — uncompressed (~236 bytes/Gaussian) | Medium — ~50% of equivalent PLY |
| Spherical Harmonics | Yes — full SH up to degree 3 | No — base color only (SH stripped) |
| Web Compatibility | Limited — size makes direct delivery impractical | Broad — widely supported by web viewers |
| Compression | None — raw parameter storage | Moderate — fixed 32-byte layout |
| Progressive Loading | No | No |
| Typical Use | Research, desktop editing, source of truth | Web sharing, antimatter15 viewer, broad compatibility |