File size: 6,306 Bytes
432a7d3 4b223c8 e8bac0f 04e9db1 432a7d3 b89f79c 5355a5a eb296c1 a523f20 31b572b c06a9b5 a523f20 35f31dc cf6167a a523f20 e8bac0f cf6167a a523f20 cf6167a a523f20 cf6167a 432a7d3 216c05e 0866905 432a7d3 0866905 432a7d3 0866905 7a71ed0 432a7d3 0866905 432a7d3 0866905 432a7d3 eb296c1 432a7d3 0866905 432a7d3 309afbb 4b223c8 c06a9b5 0866905 02e550e d98e648 a4a30c8 c06a9b5 a4a30c8 c06a9b5 a4a30c8 0866905 432a7d3 c06a9b5 0866905 02e550e 7a327e7 5ab2ea5 02e550e c06a9b5 0866905 02e550e 7a327e7 0866905 02e550e dcb78ae 682535d 432a7d3 b1c2a0f 5843541 b1c2a0f 1c96884 5843541 432a7d3 35f31dc 7a1a45e 432a7d3 eb296c1 0866905 432a7d3 0866905 432a7d3 0866905 432a7d3 7a327e7 432a7d3 0866905 432a7d3 c4f57a0 0866905 432a7d3 02e550e 5ab2ea5 83746e4 0866905 |
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 |
import gradio as gr
from gradio_client import Client
import os
import logging
import json
from datetime import datetime
import tempfile
import numpy as np
from PIL import Image
import shutil
import httpx
import time
import base64
from gradio_client import Client, handle_file
# ๋ก๊น
์ค์
logging.basicConfig(level=logging.INFO)
# ํ์์์ ์ค์ ์ 30์ด๋ก ๋๋ฆผ
httpx_client = httpx.Client(timeout=30.0)
max_retries = 3
retry_delay = 5 # 5์ด ๋๊ธฐ
for attempt in range(max_retries):
try:
api_client = Client("http://211.233.58.202:7960/")
api_client.httpx_client = httpx_client # httpx ํด๋ผ์ด์ธํธ ์ค์
break # ์ฑ๊ณตํ๋ฉด ๋ฃจํ ์ข
๋ฃ
except httpx.ReadTimeout:
if attempt < max_retries - 1: # ๋ง์ง๋ง ์๋๊ฐ ์๋๋ฉด
print(f"Connection timed out. Retrying in {retry_delay} seconds...")
time.sleep(retry_delay)
else:
print("Failed to connect after multiple attempts.")
raise # ๋ชจ๋ ์๋ ์คํจ ์ ์์ธ ๋ฐ์
# ๊ฐค๋ฌ๋ฆฌ ์ ์ฅ ๋๋ ํ ๋ฆฌ ์ค์
GALLERY_DIR = "gallery"
GALLERY_JSON = "gallery.json"
# ๊ฐค๋ฌ๋ฆฌ ๋๋ ํ ๋ฆฌ ์์ฑ
os.makedirs(GALLERY_DIR, exist_ok=True)
def save_to_gallery(video_path, prompt):
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
new_video_path = os.path.join(GALLERY_DIR, f"{timestamp}.mp4")
# ๋น๋์ค ํ์ผ ๋ณต์ฌ
shutil.copy2(video_path, new_video_path)
# ๊ฐค๋ฌ๋ฆฌ ์ ๋ณด ์ ์ฅ
gallery_info = {
"video": new_video_path,
"prompt": prompt,
"timestamp": timestamp
}
if os.path.exists(GALLERY_JSON):
with open(GALLERY_JSON, "r") as f:
gallery = json.load(f)
else:
gallery = []
gallery.append(gallery_info)
with open(GALLERY_JSON, "w") as f:
json.dump(gallery, f, indent=2)
return new_video_path
def load_gallery():
if os.path.exists(GALLERY_JSON):
with open(GALLERY_JSON, "r") as f:
gallery = json.load(f)
return [(item["video"], item["prompt"]) for item in reversed(gallery)]
return []
def respond(image, prompt, steps, cfg_scale, eta, fs, seed, video_length):
logging.info(f"Received prompt: {prompt}, steps: {steps}, cfg_scale: {cfg_scale}, "
f"eta: {eta}, fs: {fs}, seed: {seed}, video_length: {video_length}")
try:
# ์ด๋ฏธ์ง ํ์ผ ์ฒ๋ฆฌ
if image is not None:
image_file = handle_file(image)
else:
image_file = None
# ๋น๋์ค ์์ฑ ์์ฒญ
result = api_client.predict(
image=image_file,
prompt=prompt,
steps=steps,
cfg_scale=cfg_scale,
eta=eta,
fs=fs,
seed=seed,
video_length=video_length,
api_name="/infer"
)
logging.info("API response received: %s", result)
# ๊ฒฐ๊ณผ ํ์ธ ๋ฐ ์ฒ๋ฆฌ
if isinstance(result, dict) and 'video' in result:
saved_video_path = save_to_gallery(result['video'], prompt)
return saved_video_path
else:
raise ValueError("Unexpected API response format")
except Exception as e:
logging.error("Error during API request: %s", str(e))
return "Failed to generate video due to an error."
css = """
footer {
visibility: hidden;
}
"""
# ์ด๋ฏธ์ง ์์ฑ์ ์ํ ์์ ํ๋กฌํํธ
examples = [
["A glamorous young woman with long, wavy blonde hair and smokey eye makeup, posing in a luxury hotel room. Sheโs wearing a sparkly gold cocktail dress and holding up a white card with 'openfree.ai' written on it in elegant calligraphy. Soft, warm lighting creates a luxurious atmosphere. ", "q1.webp"],
["A fantasy map of a fictional world, with detailed terrain and cities.", "q19.webp"]
]
def use_prompt(prompt):
return prompt
with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
with gr.Tab("Generate"):
with gr.Row():
input_image = gr.Image(label="Upload an image", type="filepath")
input_text = gr.Textbox(label="Enter your prompt for video generation")
output_video = gr.Video(label="Generated Video")
with gr.Row():
steps = gr.Slider(minimum=1, maximum=100, step=1, label="Steps", value=30)
cfg_scale = gr.Slider(minimum=1, maximum=15, step=0.1, label="CFG Scale", value=3.5)
eta = gr.Slider(minimum=0, maximum=1, step=0.1, label="ETA", value=1)
fs = gr.Slider(minimum=1, maximum=30, step=1, label="FPS", value=8)
seed = gr.Slider(minimum=0, maximum=1000000, step=1, label="Seed", value=123)
video_length = gr.Slider(minimum=1, maximum=10, step=1, label="Video Length (seconds)", value=2)
with gr.Row():
for prompt, image_file in examples:
with gr.Column():
gr.Image(image_file, label=prompt[:50] + "...") # ํ๋กฌํํธ์ ์ฒ์ 50์๋ง ํ์
gr.Button("Use this prompt").click(
fn=use_prompt,
inputs=[],
outputs=input_text,
api_name=False
).then(
lambda x=prompt: x,
inputs=[],
outputs=input_text
)
with gr.Tab("Gallery"):
gallery = gr.Gallery(
label="Generated Videos",
show_label=False,
elem_id="gallery",
columns=[5],
rows=[3],
object_fit="contain",
height="auto"
)
refresh_btn = gr.Button("Refresh Gallery")
def update_gallery():
return load_gallery()
refresh_btn.click(fn=update_gallery, inputs=None, outputs=gallery)
demo.load(fn=update_gallery, inputs=None, outputs=gallery)
input_text.submit(
fn=respond,
inputs=[input_image, input_text, steps, cfg_scale, eta, fs, seed, video_length],
outputs=output_video
).then(
fn=update_gallery,
inputs=None,
outputs=gallery
)
if __name__ == "__main__":
demo.launch()
|