From Magic Emus

Your creativity,
supercharged.

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.

Magicium One
🤖 Magic AI
💻 MagCode
🎬 MagVid
🎮 MagPlay
MagStudio
🎵 MagAudio

Flagship Platform

Everything in
one launcher.

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.

  • AI-powered generation — no API key needed
  • Runs entirely in your browser, offline-capable
  • Unified account across all Magic Emus apps
  • MagDB — your data, stored locally and privately
Launch Magicium One
Magicium One · v19
🏠 Home
🤖 Magic AI
⬡ MagStudio
💻 MagCode
🎮 MagPlay
🎬 MagVid
Welcome to Magicium One
🤖
Magic AI
🎬
MagVid
Studio
🎮
MagPlay

The Suite

Every tool you need.

Six specialised apps. One account. All free, all in your browser.

🤖
Magic AI
AI Assistant & Generator

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.

ChatImage GenScript WriterCode GenOffline
Open Magic AI →
MagStudio
3D & Creative Suite

AI-powered 3D modelling, texture painting, animation, sculpting, and shader editing. Generate full models from a text prompt.

3D GenWebGLSculpt
Open MagStudio →
🎬
MagVid
Film & Franchise Generator

Generate full movie scripts, TV show seasons, trilogies, franchise bibles, and merchandise concepts from a single prompt.

MoviesTV ShowsFranchise
Open MagVid →
💻
MagCode
AI Code Editor

Full in-browser code editor with AI generation in 40+ languages, syntax highlighting, live HTML preview, and project management.

40+ LanguagesAI GenLive Preview
Open MagCode →
🎮
MagPlay
Game Engine

Browser-based game engine with scene editor, physics, asset management, mod system, and AI-assisted level generation.

Scene EditorPhysicsMods
Open MagPlay →
🎵
MagAudio
Audio Studio

AI music generation, voice synthesis, audio waveform editing, beat layering, and export — entirely in the browser.

AI MusicTTSWaveform
Open MagAudio →

One Account

Sign in once.
Access everything.

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.

  • Profile synced between homepage and Magicium One
  • Your assets and projects stored in MagDB
  • Magicium OAuth — works on web, desktop, mobile & VR
  • Admin dashboard for account management
Not signed in
Sign in to Magicium One to see your profile here.

About Magic Emus

Software built
without limits.

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.

0
Core Apps
0
Languages Supported
0
% Free to Start
0
Current Version

Downloads

Apps, server releases & tools.

Run Magicium One everywhere. All releases are free — Beta v1.2.

📱
App Releases
Native apps for Windows, Android, and VR headsets — Beta v1.2
🪟
Magicium One for Windows
Windows 10/11 · x64 · Beta v1.2

Full desktop launcher with native window controls, system tray, screen sharing, CLI access, server utility, and offline support. Access Magic AI, MagCode, Studio, and all apps from one place.

Windows 10/11x64Tray appOfflineScreen sharing
MagiciumOne-Setup-1.2.0-beta.exe
🤖
Magicium One for Android
Android 13+ · Min SDK 33 · Beta v1.2

All-in-one Android app with every feature from the web platform — Magic AI, Studio, MagCode, MagPlay, Avatars, Libraries, Voice Clone, and more. Works offline with bundled assets.

Android 13+All featuresOfflineDeep links
MagiciumOne-1.2.0-beta.apk
🥽
Magicium One VR
Quest 3 · Pico 4 · Galaxy XR · Beta v1.2

Full VR app with an immersive 3D WebXR workspace — virtual desk, floating panels, ambient environment, hand tracking, and all Magicium One widgets accessible as VR overlay panels.

Quest 3Pico 4Galaxy XRWebXRHand tracking
MagiciumOneVR-1.2.0-beta.apk
🖥
Server Releases
Host Magic AI on your own machine or cloud VM
magic-ai-datasets.jar
Java 21 · Dataset & .mag-gguf model server

HTTP server for hosting training datasets and custom .mag-gguf models. Management UI included. Runs standalone — no dependencies.

Java 21+REST API.mag-ggufDatasets
java -jar magic-ai-datasets.jar 7420 ./data
🐍
magic-ai-server.py
Python 3.10+ · Lightweight HTTP server

Python server bridge for Magic AI's public API. Zero dependencies — uses only the standard library. Works on any OS.

Python 3.10+Zero depsREST API
python3 magic-ai-server.py
🟢
magic-ai-server.js
Node.js 18+ · Express server

Node.js server with Express. Full CORS support, API key validation, and endpoint forwarding to a running Magicium One instance.

Node 18+ExpressCORS
npm install && node server.js
🌐
magic-ai-server.html
HTML · Self-contained browser server

Single HTML file that acts as a standalone Magic AI server UI. Open in any browser — no install, no server required.

HTMLNo installPortable
Open in any browser
🐘
magic-ai-server.php
PHP 8.0+ · cPanel / shared hosting

PHP server for shared hosting environments like cPanel. Drop it into your web root and it works immediately.

PHP 8.0+cPanelShared hosting
Upload to web root
🐳
Docker
Docker + docker-compose · Container deploy

Dockerfile and compose config for containerised deployments. One command to get Magic AI running in any Docker environment.

DockerComposeContainer
docker compose up
🧬
.mag-gguf Model Format
Portable Magic AI model files — works with HTML, JS, Python, C++, Node
.mag-gguf

Proprietary AI model format

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.

HTML / JSPythonC++Node.jsJava
example.mag-gguf
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);