From Magic Emus
Magicium One brings together AI generation, 3D tools, code, video, and game creation — all in one platform. Free to start.
Free in your browser. No install required.
Flagship Platform
Magicium One is a Minecraft-launcher-style hub that puts every Magic Emus app at your fingertips. Sign in once, access everything — AI chat, 3D generation, coding, video, game creation, and more.
The Suite
Six specialised apps. One account. All free, all in your browser.
Fully offline AI chat and generation powered by Magic Emus' own engine. No API keys. No usage limits. Generates scripts, code, audio, images, and more — all on-device.
AI-powered 3D modelling, texture painting, animation, sculpting, and shader editing. Generate full models from a text prompt.
Generate full movie scripts, TV show seasons, trilogies, franchise bibles, and merchandise concepts from a single prompt.
Full in-browser code editor with AI generation in 40+ languages, syntax highlighting, live HTML preview, and project management.
Browser-based game engine with scene editor, physics, asset management, mod system, and AI-assisted level generation.
AI music generation, voice synthesis, audio waveform editing, beat layering, and export — entirely in the browser.
One Account
Your Magic Emus account syncs across Magicium One and this site. See your projects, activity, and apps the moment you land on any Magic Emus page.
About Magic Emus
Magic Emus is an independent software company building creative tools that run in any browser, on any device, with no subscriptions or install requirements. Everything we ship is designed around one idea: powerful software should be accessible to everyone.
Downloads
Run Magicium One everywhere. All releases are free — Beta v1.2.
Full desktop launcher with native window controls, system tray, offline fallback, and deep OS integration. Access Magic AI, MagCode, Studio, and all apps from one place.
npm install && npm run dist:winAll-in-one Android app with full WebView integration, offline asset bundle, camera/mic permissions for voice cloning and body scan, and a JS bridge for native OS features.
gradlew assembleReleaseImmersive 3D environment for VR headsets. Raw WebGL2 + WebXR — no dependencies. Features a full virtual workspace with pillars, ambient particles, animated orb, and HUD overlay. Falls back to 360° desktop mode.
Open in headset browser / sideloadHTTP server for hosting training datasets and custom .mag-gguf models. Management UI included. Runs standalone — no dependencies.
java -jar magic-ai-datasets.jar 7420 ./data
Python server bridge for Magic AI's public API. Zero dependencies — uses only the standard library. Works on any OS.
python3 magic-ai-server.pyNode.js server with Express. Full CORS support, API key validation, and endpoint forwarding to a running Magicium One instance.
npm install && node server.jsSingle HTML file that acts as a standalone Magic AI server UI. Open in any browser — no install, no server required.
Open in any browserPHP server for shared hosting environments like cPanel. Drop it into your web root and it works immediately.
Upload to web rootDockerfile and compose config for containerised deployments. One command to get Magic AI running in any Docker environment.
docker compose up
Create, export, and share custom Magic AI models as portable .mag-gguf files.
Each file encodes a model's persona, system prompt, memory seeds, coding focus, and behaviour settings in a compact, base64-signed envelope.
Load them in any runtime: open in Magicium One, import via Python, parse in C++, or serve from your dataset server.
MAGGGUF|v1.0|eyJtYWdpYyI6Ik1BR0dHVUYi... // Python model = load_mag_gguf('expert.mag-gguf') print(model['name']) # Magic Code print(model['style']) # technical // JavaScript const m = MODEL_ENGINE .deserializeFromMagGguf(raw); MODEL_ENGINE.setActiveModel(m.id);