Dream Studio - Nastia Mouse - Videos 001-109 May 2026
Dream Studio – Nastia Mouse – Videos 001‑109
Dream Studio is a collaborative platform for creating and sharing short‑form video content. The “Nastia Mouse” series (videos 001‑109) is a popular collection that showcases a blend of animation, storytelling, and production techniques. Below is an overview of the series, key lessons you can draw from it, and practical tips for creators who want to apply those insights to their own projects.
b. Technical Workflow
- Pre‑visualization: Storyboards and animatics are created in the first few videos, saving time during full animation.
- Asset organization: Folder structures (
/Characters,/Backgrounds,/Audio) are consistently used, making collaboration smoother.
001‑010 – First Steps with DreamStudio
| Ep. | Title (approx.) | Main Take‑aways | Action Item |
|-----|----------------|----------------|------------|
| 001 | Welcome & Account Creation | • Signing up on dreamstudio.ai
• Understanding the credit system | Create your free account; note your initial credit balance. |
| 002 | Interface Tour | • Layout: Prompt box, Settings, History, Gallery | Hover over each UI element; memorize where “Generate” lives. |
| 003 | Your First Prompt | • Simple prompt: a cat wearing a wizard hat
• Default sampler (Euler‑a) | Generate 3 variations; save the best. |
| 004 | Understanding CFG Scale | • CFG = “Classifier‑Free Guidance”
• Low (5–7) = creative, high (12–15) = faithful | Re‑run the cat prompt with CFG 7, 12, 15 – observe differences. |
| 005 | Steps & Resolution | • Steps = diffusion iterations
• 20‑30 steps good for 512×512; higher for detail | Render a 768×768 image at 40 steps. |
| 006 | Seed & Re‑producibility | • Seed = random start point
• Using a fixed seed yields identical results | Generate an image, copy the seed, re‑run to confirm. |
| 007 | Negative Prompting | • “no text”, “no watermarks”
• Syntax: negative_prompt: "text, watermark" | Add a negative prompt to remove unwanted artifacts. |
| 008 | Saving & Exporting | • PNG metadata (prompt, seed)
• Export options: PNG, JPEG, WebP | Export your best image as PNG; open in Photoshop to verify metadata. |
| 009 | Basic Troubleshooting | • “Too many artifacts” → lower CFG, more steps
• “Blank output” → check credit balance | Run the checklist on a failed generate. |
| 010 | Mini‑Project: Meme Generator | • Combine a funny caption with a simple visual
• Use “Add Text” overlay in DreamStudio (beta) | Create a 2‑panel meme, export, and share on Discord. | Dream Studio - Nastia Mouse - Videos 001-109
Cheat‑Sheet (001‑010)
Prompt: "a cat wearing a wizard hat, cinematic lighting, detailed fur"
Negative: "watermark, text"
CFG: 12
Steps: 30
Size: 768x768
Seed: 123456789
Sampler: Euler‑a
031‑040 – Image‑to‑Image & Inpainting
| Ep. | Feature | Step‑by‑Step | |-----|---------|--------------| | 031 | Image‑to‑Image (Img2Img) Basics | Upload source, set “strength” (0‑1). | | 032 | Strength tuning | Low (0.2) = subtle, High (0.8) = radical transformation. | | 033 | Mask creation | Paint a white mask in any editor; upload as “mask”. | | 034 | Inpainting workflow | Provide image + mask + new prompt → localized edit. | | 035 | Edge‑guided inpainting | Use “Canny” edge detection for precise outlines. | | 036 | ControlNet for pose | Feed a skeletal pose map → keep pose while changing style. | | 037 | Batch Img2Img | Loop over a folder via API; maintain seed continuity. | | 038 | Color‑preservation tricks | Add “(preserve colors)” token; lower CFG. | | 039 | Iterative refinement | Run Img2Img multiple passes with decreasing strength. | | 040 | Mini‑Project: Re‑skin a 3D character | Start from a game screenshot → inpaint new armor. | Dream Studio – Nastia Mouse – Videos 001‑109
Img2Img Example (API JSON)
"prompt": "a cyberpunk city at night, neon lights, rain, ultra‑realistic",
"negative_prompt": "watermark, lowres",
"init_image": "data:image/png;base64,...", // your source
"init_strength": 0.45,
"cfg_scale": 13,
"sampler_name": "DPM++ 2M",
"steps": 35,
"width": 768,
"height": 768
