All converters
European
iSeazy Converter — Extract Course Snapshots to PDF/Word/Markdown
iSeazy stores SCORM content as static JSON snapshots: `content/snapshots/s.json` declares the project tree (project → section → subsection → slide), and each slide gets its own `sld-<id>.json` with interactive elements. Rich text is stored as Quill Delta format (`ops[].insert`). SCORM Converter's `IseazyParser` walks the tree in display order and emits per-slide markdown.
Why export iSeazy iSeazy content?
- Extract iSeazy courses for translation into other languages
- Archive iSeazy course catalog before subscription changes
- Repurpose iSeazy interactive content as printable PDF
- Migrate from iSeazy to a different LMS
- Convert iSeazy slide text into AI-ready RAG chunks
IseazyParser — what we extract
Recursive walker of project.pos → section.pos → subsection.pos → slide
Quill Delta ops[].insert reconstruction
`interactiveRichText` element extraction
Slide order preserved from tree structure
Slide title auto-detection from first text block
Technical details
File signature
content/snapshots/s.json with `i.0.setup.pos` arraySCORM versions supported
SCORM 1.2
Typical package size
3-30 MB
Implementation note
iSeazy stores fonts and styling separately from content, so the markdown output is clean text without inline style noise. Image and video references are preserved as URLs.
Export formats
Frequently asked questions about iSeazy iSeazy
What's an iSeazy SCORM package?▼
iSeazy is a European authoring tool that produces SCORM with content stored as JSON snapshots in `content/snapshots/`. Each course has a project root (`s.json`) describing the tree, and one `sld-<id>.json` per slide containing interactive elements with text in Quill Delta format.
How does the parser get text out of Quill Delta format?▼
Quill Delta is a JSON format where each text run is an object with an `insert` field. Our parser walks `setup.txt.val.ops[]` arrays and concatenates `insert` fields, preserving paragraph breaks. The output is clean Markdown without the Delta noise.
Will the parser preserve iSeazy slide order?▼
Yes. The project tree in `s.json` has explicit ordering: project.pos → section.pos → subsection.pos → slide IDs. Our parser walks this tree recursively producing slides in the order they appear in the iSeazy editor.
Can I extract iSeazy interactive elements?▼
Text content from `interactiveRichText`, `interactiveImage` (caption only), and similar interactive elements is fully extracted. The interactivity itself becomes linear narrative text in the output, suitable for PDF/Word documentation.
How do I find an iSeazy course in my SCORM library?▼
The presence of `content/snapshots/s.json` is the canonical signature. SCORM Converter auto-detects it from the path pattern. If you have many SCORM files and don't know which is iSeazy, upload them to the dashboard — we report the detected authoring tool for each.
Related guides
Other authoring tools
Ready to convert your iSeazy iSeazy content?
Free during beta. PDF, Word, and Markdown exports with no limits.