import gradio as gr import os from demo.motiondirector import MotionDirector from huggingface_hub import snapshot_download snapshot_download(repo_id="cerspense/zeroscope_v2_576w", local_dir="./zeroscope_v2_576w/") snapshot_download(repo_id="ruizhaocv/MotionDirector", local_dir="./MotionDirector_pretrained") is_spaces = True if "SPACE_ID" in os.environ else False true_for_shared_ui = False # This will be true only if you are in a shared UI if (is_spaces): true_for_shared_ui = True if "ruizhaocv/MotionDirector" in os.environ['SPACE_ID'] else False runner = MotionDirector() def motiondirector(model_select, text_pormpt, neg_text_pormpt, random_seed=1, steps=25, guidance_scale=7.5, baseline_select=False): return runner(model_select, text_pormpt, neg_text_pormpt, int(random_seed) if random_seed != "" else 1, int(steps), float(guidance_scale), baseline_select) with gr.Blocks() as demo: gr.HTML( """

MotionDirector: Motion Customization of Text-to-Video Diffusion Models

More MotionDirectors are on the way. Stay tuned 🔥!
If you like our project, please give us a star ✨ on Github for the latest update.

        
""") with gr.Row(): generated_video_baseline = gr.Video(format="mp4", label="Video Generated by base model (ZeroScope with same seed)") generated_video = gr.Video(format="mp4", label="Video Generated by MotionDirector") with gr.Column(): baseline_select = gr.Checkbox(label="Compare with baseline (ZeroScope with same seed)", info="Run baseline? Note: Inference time will be doubled.") random_seed = gr.Textbox(label="Random seed", value=1, info="default: 1") sampling_steps = gr.Textbox(label="Sampling steps", value=30, info="default: 30") guidance_scale = gr.Textbox(label="Guidance scale", value=12, info="default: 12") with gr.Row(): model_select = gr.Dropdown( ["1-1: [Cinematic Shots] -- Zoom Out", "1-2: [Cinematic Shots] -- Zoom In", "1-3: [Cinematic Shots] -- Dolly Zoom (Hitchcockian Zoom) 1", "1-4: [Cinematic Shots] -- Dolly Zoom (Hitchcockian Zoom) 2", "1-5: [Cinematic Shots] -- Follow", "1-6: [Cinematic Shots] -- Reverse Follow", "1-7: [Cinematic Shots] -- Chest Transition", "1-8: [Cinematic Shots] -- Mini Jib Reveal", "1-9: [Cinematic Shots] -- Orbit", "1-10: [Cinematic Shots] -- Pull Back", "2-1: [Object Trajectory] -- Right to Left", "2-2: [Object Trajectory] -- Left to Right", "3-1: [Sports Concepts] -- Riding Bicycle", "3-2: [Sports Concepts] -- Riding Horse", "3-3: [Sports Concepts] -- Lifting Weights", "3-4: [Sports Concepts] -- Playing Golf", "3-5: [Sports Concepts] -- Skateboarding", ], label="Select MotionDirector *", info="Which MotionDirector would you like to use!" ) text_pormpt = gr.Textbox(label="Text Prompt *", value='', placeholder="Input your text prompt here!") neg_text_pormpt = gr.Textbox(label="Negative Text Prompt", value='', placeholder="default: None") submit = gr.Button("Generate") # when the `submit` button is clicked submit.click( motiondirector, [model_select, text_pormpt, neg_text_pormpt, random_seed, sampling_steps, guidance_scale, baseline_select], [generated_video, generated_video_baseline] ) gr.Markdown("Note: * denotes required field. Tips: More detailed text prompt is helpful for generating better results.") # Examples gr.Markdown("## Examples") gr.Examples( fn=motiondirector, examples=[ ["1-1: [Cinematic Shots] -- Zoom Out", "A spaceman standing on the moon captured with a zoom out.", 5894219], ["1-2: [Cinematic Shots] -- Zoom In", "A polar bear standing at the top of a snowy mountain captured with a zoom in.", 9036551], ["1-3: [Cinematic Shots] -- Dolly Zoom (Hitchcockian Zoom) 1", "A panda standing in front of an ancient Chinese temple captured with a dolly zoom.", 150518], ["1-4: [Cinematic Shots] -- Dolly Zoom (Hitchcockian Zoom) 2", "A lion sitting on top of a cliff captured with a dolly zoom.", 1675932], ["1-5: [Cinematic Shots] -- Follow", "A fireman is walking through fire captured with a follow cinematic shot.", 2927089], ["1-6: [Cinematic Shots] -- Reverse Follow", "A fireman is walking through fire captured with a reverse follow cinematic shot.", 271723], ["1-7: [Cinematic Shots] -- Chest Transition", "An ancient Roman soldier walks through the crowd on the street captured with a chest transition cinematic shot.", 4126807], ["1-8: [Cinematic Shots] -- Mini Jib Reveal", "A British Redcoat soldier is walking through the mountains captured with a mini jib reveal cinematic shot.", 566917], ["1-9: [Cinematic Shots] -- Orbit", "A spaceman on the moon captured with an orbit cinematic shot.", 764227], ["1-10: [Cinematic Shots] -- Pull Back", "A woman looking at a volcano erupting in the distance captured with a pull back cinematic shot.", 6878528], ["2-1: [Object Trajectory] -- Right to Left", "A tank is running on the moon.", 2047046], ["2-2: [Object Trajectory] -- Left to Right", "A lion is running past the pyramids.", 2562209], ["3-1: [Sports Concepts] -- Riding Bicycle", "An astronaut is riding a bicycle past the pyramids Mars 4K high quality highly detailed.", 4422954], ["3-2: [Sports Concepts] -- Riding Horse", "A man riding an elephant through the jungle.", 6230765], ["3-3: [Sports Concepts] -- Lifting Weights", "A panda is lifting weights in a garden.", 1699276], ["3-4: [Sports Concepts] -- Playing Golf", "A monkey is playing golf on a field full of flowers.", 4156856], ["3-5: [Sports Concepts] -- Skateboarding", "An astronaut is skateboarding on Mars.", 6615212], ], inputs=[model_select, text_pormpt, random_seed], outputs=generated_video, examples_per_page=20, ) demo.queue(max_size=15) demo.launch(share=False)