VO: Every Station Needs Command: Canvas Animation

VO
video
canvas animation
youtube short
More messing around with adobe after effects
Author

Matt Crump

Published

February 23, 2024

Code
from diffusers import DiffusionPipeline
from transformers import set_seed
from PIL import Image
import torch
import random
import ssl
import os
ssl._create_default_https_context = ssl._create_unverified_context

#locate library
#model_id = "./stable-diffusion-v1-5"
model_id = "dreamshaper-xl-turbo"

pipeline = DiffusionPipeline.from_pretrained(
    pretrained_model_name_or_path = "../../../../bigFiles/huggingface/dreamshaper-xl-turbo/"
)

pipeline = pipeline.to("mps")

# Recommended if your computer has < 64 GB of RAM
pipeline.enable_attention_slicing("max")

prompt = "Space station universe situation. Synthesizer universe. Neon. 80s Cartoon. Thundercats. Command station."

for s in range(30):
  for n in [5,10]:
    seed = s+21
    num_steps = n+1
    set_seed(seed)
    
    image = pipeline(prompt,height = 1080,width = 1080,num_images_per_prompt = 1,num_inference_steps=num_steps)
    
    image_name = "images/synth_{}_{}.jpeg"
    
    image_save = image.images[0].save(image_name.format(seed,num_steps))

Record player. White background. Robot Transformer record player. 3d. Linocut. Neon. Lasers. Awesomeness - dreamshaper-xl-turbo

Yet another quick post on making an animation for an older track.

VO: Every Station Needs Command

This one is Every Station Needs Command from VO. It’s a bit alternative indie rock synth downtempo thing?

Animation details

I put in this prompt, “Space station universe situation. Synthesizer universe. Neon. 80s Cartoon. Thundercats. Command station.” to dreamshaper-turbo-xl.

This time I have a plan for what I want to do in adobe after effects. Most likely I will pick one of these pictures. Then, I’ll load it into AE. The vision is a series of circles, rotating in alternating directions, potentially bouncing a little bit to the beat. I’ll fill the circles with the picture. It will start with the picture as normal, then the picture, which will be composed of a series of lined up concentric circles, will rotate away from itself as the circles spin around, and then back to it’s starting position. Or something like that.

synth_21_11.jpeg

synth_21_11.jpeg

synth_21_6.jpeg

synth_21_6.jpeg

synth_22_11.jpeg

synth_22_11.jpeg

synth_22_6.jpeg

synth_22_6.jpeg

synth_23_11.jpeg

synth_23_11.jpeg

synth_23_6.jpeg

synth_23_6.jpeg

synth_24_11.jpeg

synth_24_11.jpeg

synth_24_6.jpeg

synth_24_6.jpeg

Youtube Short

A couple spinning circles inside a command station.