Spaces:
Running
Running
File size: 13,472 Bytes
f465388 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
import gradio as gr
import argparse
from openai import OpenAI
import base64
from mimetypes import guess_type
preferred_txt2image_diffusion_model= "black-forest-labs/FLUX.1-dev"
txt2image_endpoint=f"http://localhost:8000/generate/image?model={preferred_txt2image_diffusion_model}&prompt="
sys_prompt_i2v = """
You are a highly skilled videographer and creative director who transforms the user's creative vision into the sort of detailed yet concise caption which, combined with the provided image,
will provide grounding and direction to a specialized video generation model which will create a stunning video clip based on your work.
Your task is to provide a vivid and engaging video description that brings the user's vision to life, while remaining precise and concise.
**Note**: The input image is the first frame of the video, and the output video caption should describe the motion starting from the current image. User input is optional and can be empty.
**Note**: Do NOT include transitions from one shot to the next. The caption must describe a single shot (with camera motion) but no jump cuts etc - after you create the caption, an advanced specialist AI will create a broadcast quality, HD video clip of between 5 and 10 seconds. The video generation is conditioned on the same image that the user has provided here (as a starting point) and whatever you decide to output as a caption. (if user doesn't specify, assume 6s when thinking of a caption - but never say the length in the caption - the user specifies that separately in a UI). PLEASE do a good job and make an effort to be creative and descriptive, particularly regarding motion. This video gen model is bleeding edge stuff and a 10s video takes 15m to generate on a very expensive A100 that I personally am renting. So try our best not to mess it up please :)
**Answering Style**:
Answers should be comprehensive, conversational, and use complete sentences. The answer should be in English no matter what the user's input is. Provide context where necessary and maintain a certain tone. Begin directly without introductory phrases like "The image/video showcases" "The photo captures" and more. For example, say "A woman is on a beach", instead of "A woman is depicted in the image".
DO NOT include any line breaks in your response. The response should be a single continuous paragraph.
MAXIMUM LENGTH: 100 words
"""
sys_prompt_t2v="""
You are a highly skilled videographer and creative director who specializes in creating stunning videos based on the user's request.
Your job is to provide a vivid and engaging video description that brings the user's vision to life, while remaining precise and concise.
The description you provide will be sent to a specialized video rendering agent who generates a HD video clip based on your work.
Video clips can be between 2s and 10s in duration; if the user specifies the duration, keep that in mind when describing the scene... Otherwise, you can safely assume that the clip will be 6 seconds long, as that's the default setting for the txt2video model.
Remember to be descriptive and imaginative in your responses.
**Answering Style**:
Answers should be comprehensive, conversational, and use complete sentences. The answer should be in English no matter what the user's input is. Provide context where necessary and maintain a certain tone. Begin directly without introductory phrases like "The image/video showcases" "The photo captures" and more. For example, say "A woman is on a beach", instead of "A woman is depicted in the image".
DO NOT include any line breaks in your response. The response should be a single continuous paragraph.
MAXIMUM LENGTH: 100 words
"""
def image_to_url(image_path):
mime_type, _ = guess_type(image_path)
if mime_type is None:
mime_type = "application/octet-stream"
with open(image_path, "rb") as image_file:
base64_encoded_data = base64.b64encode(image_file.read()).decode("utf-8")
return f"data:{mime_type};base64,{base64_encoded_data}"
def prompt_to_image(t2v_prompt, save_to_folder=None):
client = OpenAI()
new_prompt = client.chat.completions.create(messages=[{"role": "system", "content": "You are an assistant to a videographer. They have provided you with a description of a video clip, a scene that is going to be produced. Please respond with a detailed, precise yet concise description to generate a still image: the first frame of the video scene that's been described to you"},
{"role": "user", "content": f"Video Clip Description: {t2v_prompt}"}], model="gpt-4o", temperature=0.8, top_p=0.95, stream=False)
first_frame_prompt = new_prompt.choices[0].message.content
import urllib.parse
encoded_prompt = urllib.parse.quote(first_frame_prompt)
# create the prompt-in-url link... this does not actually generate the image UNTIL THE URL IS HIT FOR THE FIRST TIME
image_url = f"{txt2image_endpoint}{encoded_prompt}"
print("Image URL: ", image_url)
if save_to_folder is not None:
print("Please wait... Rendering the image and saving it to the folder")
# download the image to the folder
import requests
response = requests.get(image_url)
image_path = os.path.join(save_to_folder, "first_frame.png")
with open(image_path, "wb") as image_file:
image_file.write(response.content)
print("Image saved to: ", image_path)
return image_url
else:
return image_url
with open(image_path, "wb") as image_file:
image_file.write(base64.b64decode(converted_prompt.split(",")[1]))
def convert_prompt(prompt: str, retry_times: int = 3, type: str = "t2v", image_path: str = None, generate_first_frame: bool = True):
"""
Convert a prompt to a format that can be used by the model for inference
"""
client = OpenAI()
## If you using with Azure OpenAI, please uncomment the below line and comment the above line
# client = AzureOpenAI(
# api_key="",
# api_version="",
# azure_endpoint=""
# )
text = prompt.strip()
for i in range(retry_times):
if type == "t2v":
response = client.chat.completions.create(
messages=[
{"role": "system", "content": f"{sys_prompt_t2v}"},
{
"role": "user",
"content": "I would like a video of a sunset over the Eiffel Tower with hot air balloons floating in the sky."
},
{
"role": "assistant",
"content": "The camera pans over Paris as the sun sets behind the Eiffel Tower, while colorful hot air balloons drift gracefully across the twilight sky."
},
{
"role": "user",
"content": "Can you create a video of a time-lapse of a flower blooming in a meadow at dawn?"
},
{
"role": "assistant",
"content": "A time-lapse captures a flower slowly blooming in a dewy meadow as the first light of dawn illuminates its petals."
},
{
"role": "user",
"content": "Please make a video showing an astronaut floating above Earth with the sun rising."
},
{
"role": "assistant",
"content": "An astronaut drifts weightlessly in space, gazing at Earth as the sun rises over the horizon, casting a golden glow."
},
{
"role": "user",
"content": "I want a video of a surfer riding a massive wave in slow motion."
},
{
"role": "assistant",
"content": "In slow motion, a surfer expertly rides a towering wave, ocean spray glistening as the wave curls around them."
},
{
"role": "user",
"content": "Create a video of a city street at night with neon signs reflecting off wet pavement."
},
{
"role": "assistant",
"content": "A bustling city street glows at night, vibrant neon signs reflecting off rain-soaked pavement as people pass by."
},
{
"role": "user",
"content": "Show a video of children flying kites in a grassy field under a clear blue sky."
},
{
"role": "assistant",
"content": "Children laugh as they run through a lush green field, their colorful kites soaring against a clear blue sky."
},
{
"role": "user",
"content": "I would like a video of a snow-covered mountain peak with clouds moving overhead."
},
{
"role": "assistant",
"content": "A majestic snow-capped mountain stands tall as time-lapse clouds drift swiftly across the sky above."
},
{
"role": "user",
"content": "Please create a video of a cat chasing a laser pointer dot around a cozy living room."
},
{
"role": "assistant",
"content": "A playful cat darts around a warm living room, eagerly chasing a moving red laser dot across the floor and furniture."
},
{
"role": "user",
"content": "Make a video of a chef cooking in a bustling kitchen with flames rising from the pan."
},
{
"role": "assistant",
"content": "A chef skillfully tosses ingredients in a sizzling pan, flames briefly rising as the kitchen buzzes with activity."
},
{
"role": "user",
"content": "I want a video of a close-up of a hummingbird sipping nectar from a vibrant red flower."
},
{
"role": "assistant",
"content": "In a detailed close-up, a hummingbird hovers effortlessly, its wings a blur as it sips nectar from a bright red flower."
},
{
"role": "user",
"content": "Create a video of a drone view of waves crashing against rugged cliffs."
},
{
"role": "assistant",
"content": "From a drone's perspective, powerful waves crash against rugged cliffs, sending sprays of white foam into the air."
},
{
"role": "user",
"content": f"{text}"
}
],
model="gpt-4o", # glm-4-plus and gpt-4o have be tested
temperature=0.8,
top_p=0.95,
stream=False
)
textual_answer = response.choices[0].message.content
if (generate_first_frame):
image_gen_url = prompt_to_image(t2v_prompt = textual_answer, save_to_folder=None)
updated_prompt = f"{textual_answer}\n\nFirst Frame: {image_gen_url}"
return updated_prompt
else:
return textual_answer
else:
response = client.chat.completions.create(
model="gpt-4o",
messages=[
{"role": "system", "content": f"{sys_prompt_i2v}"},
{
"role": "user",
"content": [
{"type": "text", "text": prompt},
{
"type": "image_url",
"image_url": {
"url": image_to_url(image_path),
},
},
],
},
],
temperature=0.7,
top_p=0.9,
stream=False,
max_tokens=100,
)
return response.choices[0].message.content
return prompt
# Create the Gradio Blocks interface
with gr.Blocks() as demo:
# Create a Textbox for the user to enter the prompt
input_prompt = gr.Textbox(label="Enter your prompt")
# Create a Button to submit the prompt
submit_button = gr.Button("Submit")
# Create a Textbox to display the result
output_result = gr.Textbox(label="Result")
# Define the event listener for the button click
submit_button.click(fn=convert_prompt, inputs=input_prompt, outputs=output_result)
# Launch the interface
demo.launch(show_error=True) |