Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Test] Stylize Video #29

Open
s9roll7 opened this issue Sep 12, 2023 · 15 comments
Open

[Test] Stylize Video #29

s9roll7 opened this issue Sep 12, 2023 · 15 comments

Comments

@s9roll7
Copy link
Owner

s9roll7 commented Sep 12, 2023

  1. Tile -> upscale
    motion_module : mm_sd_v14.ckpt
    steps : 20
    guidance_scale : 10
    [0]
    ip_adapter_plus ("is_plus_face": false, "is_plus": true) / scale : 0.5
    controlnet_tile / controlnet_conditioning_scale : 0.75
    size : 512x512
    context : 16
    [1]
    ip_adapter_plus / scale : 0.5
    controlnet_tile / controlnet_conditioning_scale : 1.0
    size : 1024x1024
    context : 8
style_tile_sample.mp4

  1. Lineart -> upscale
    motion_module : mm_sd_v15_v2.ckpt
    steps : 20
    guidance_scale : 10
    [0]
    ip_adapter_plus / scale : 0.5
    controlnet_lineart / controlnet_conditioning_scale : 1.0
    controlnet_ip2p / controlnet_conditioning_scale : 0.5
    size : 512x512
    context : 16
    [1]
    ip_adapter_plus / scale : 0.5
    controlnet_tile / controlnet_conditioning_scale : 1.0
    controlnet_ip2p / controlnet_conditioning_scale : 0.5
    size : 768x768
    context : 8
lineart_style_sample.mp4

  1. Openpose -> upscale
    motion_module : mm_sd_v15_v2.ckpt
    steps : 20
    guidance_scale : 10
    [0]
    ip_adapter_plus / scale : 0.5
    controlnet_openpose / controlnet_conditioning_scale : 1.0
    size : 512x512
    context : 16
    [1]
    ip_adapter_plus / scale : 0.5
    controlnet_tile / controlnet_conditioning_scale : 1.0
    size : 1024x1024
    context : 8
openpose_style_sample.mp4

  1. Softedge -> upscale
    motion_module : mm-Stabilized_high.pth
    steps : 20
    guidance_scale : 10
    [0]
    ip_adapter_plus / scale : 0.5
    controlnet_softedge / controlnet_conditioning_scale : 1.0
    controlnet_ip2p / controlnet_conditioning_scale : 0.5
    size : 512x760
    context : 16
    [1]
    ip_adapter_plus / scale : 0.5
    controlnet_tile / controlnet_conditioning_scale : 1.0
    size : 768x1136
    context : 8
softedge_style_sample.mp4

@sdqq1234
Copy link

Why my result is bad when I use openpose,
I updated to the latest on the morning of September 13th
I used command animatediff generate -c config/prompts/Meina.json -W 424 -H 768 -L 16 -C 16
my openpose images
image
my result
image
MyPrompts
MyPrompts.zip

@s9roll7
Copy link
Owner Author

s9roll7 commented Sep 13, 2023

MyPrompts

You are trying to apply controlnet to all frames. In that case, you have to cut the effect of controlnet on the neighboring frames

#16
#6 (comment)

    "controlnet_openpose":{
      "enable": true,
      "use_preprocessor":true,
      "guess_mode":false,
      "controlnet_conditioning_scale": 1.0,
      "control_guidance_start": 0.0,
      "control_guidance_end": 1.0,
      "control_scale_list":[0.5,0.4,0.3,0.2,0.1]      # <---- ng
    },

    "controlnet_openpose":{
      "enable": true,
      "use_preprocessor":true,
      "guess_mode":false,
      "controlnet_conditioning_scale": 1.0,
      "control_guidance_start": 0.0,
      "control_guidance_end": 1.0,
      "control_scale_list":[]      # <---- ok
    },

@sdqq1234
Copy link

thank you very much, it's much better!!!
image

@yuturiy
Copy link

yuturiy commented Sep 16, 2023

@s9roll7 can you please provide the full prompt.json for this video

style_sample.mp4

I try to reproduce but fail every time

@s9roll7
Copy link
Owner Author

s9roll7 commented Sep 16, 2023

Unfortunately, it looks like I overwrote the config file and it didn't remain.
What exactly happens when you say "fail"? The video file is not generated?

@yuturiy
Copy link

yuturiy commented Sep 17, 2023

Unfortunately, it looks like I overwrote the config file and it didn't remain. What exactly happens when you say "fail"? The video file is not generated?

Sorry. By fail I mean I get very inconsistent video. So it would be nice to have a complete prompt example where everything is consistent.

@s9roll7
Copy link
Owner Author

s9roll7 commented Sep 17, 2023

Are you using lora? it is quite difficult to keep the character and style consistent without lora.

@yuturiy
Copy link

yuturiy commented Sep 17, 2023

Are you using lora? it is quite difficult to keep the character and style consistent without lora.

no, there was nothing about loras near stylize examples(
will try, thanks

@tokimwc
Copy link

tokimwc commented Sep 20, 2023

Hello @s9roll7

I've been exploring your repository and noticed the mention of VAE in the configurations. However, I couldn't find any specific guidance on where to place the VAE within the repository. Could you provide some insights or directions on this?

Thank you for your assistance!

@s9roll7
Copy link
Owner Author

s9roll7 commented Sep 20, 2023

Currently, it is not possible to read vae by itself.
The data that the checkpoint has is used.

@s9roll7 s9roll7 mentioned this issue Sep 26, 2023
@seemon2
Copy link

seemon2 commented Oct 6, 2023

Hi, .. when running the command in the command "animatediff stylize create-config IA.mp4" (my video), encounter this error ..
image

Is there an issue that need resolve that I am not aware of for stylized run?

@rudekuclux
Copy link

Why my result is bad when I use openpose, I updated to the latest on the morning of September 13th I used command animatediff generate -c config/prompts/Meina.json -W 424 -H 768 -L 16 -C 16 my openpose images image my result image MyPrompts MyPrompts.zip

i have issue like this how do you fix it?

@s9roll7
Copy link
Owner Author

s9roll7 commented Oct 8, 2023

Why my result is bad when I use openpose, I updated to the latest on the morning of September 13th I used command animatediff generate -c config/prompts/Meina.json -W 424 -H 768 -L 16 -C 16 my openpose images image my result image MyPrompts MyPrompts.zip

i have issue like this how do you fix it?

#29 (comment)

@prezofpizza
Copy link

Can anyone share some prompts that have had good results? My results tend to look pretty messy.
image

@lyc6749
Copy link

lyc6749 commented Jan 15, 2024

4. controlnet_conditioning_scale

Have you solved this problem?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants