Spaces:
Sleeping
Sleeping
File size: 13,391 Bytes
36dd645 9a4edab 1e9882c 9a4edab 1e9882c 9a4edab 2e40bb4 9a4edab 524f3f2 75efe1b 9a4edab d9bc1e6 346f789 524f3f2 d9bc1e6 524f3f2 1e9882c d9bc1e6 8352ac4 524f3f2 9a4edab 1e9882c c9dba17 1e9882c a2398fe 1e9882c 9a4edab 1e9882c 2e40bb4 346f789 1e9882c 9a4edab 1e9882c b45d081 1e9882c db6bd44 c9dba17 1e9882c 60f7312 1e9882c 13fad22 1e9882c bcf5c7a 1e9882c 2bc3ef7 f326d9e 67e82c5 2bc3ef7 1e9882c 2e40bb4 2bc3ef7 cb81547 2e40bb4 cb81547 1e9882c d9bc1e6 a84ba92 d9bc1e6 2e40bb4 1e9882c 9a4edab 1e9882c 9a4edab 1e9882c 9a4edab 1e9882c 191a9de 1e9882c 0b42297 75efe1b db6bd44 2e40bb4 db6bd44 2e40bb4 346f789 2e40bb4 346f789 2e40bb4 346f789 2e40bb4 346f789 2e40bb4 346f789 c9dba17 346f789 2e40bb4 d9bc1e6 2e40bb4 d9bc1e6 2e40bb4 d9bc1e6 2e40bb4 d9bc1e6 2e40bb4 d9bc1e6 2e40bb4 d9bc1e6 346f789 d9bc1e6 346f789 d9bc1e6 346f789 2e40bb4 346f789 2e40bb4 346f789 d9bc1e6 2e40bb4 d9bc1e6 c9dba17 b3c71e2 2e40bb4 d9bc1e6 2e40bb4 d9bc1e6 2e40bb4 d9bc1e6 2e40bb4 562fba7 2e40bb4 346f789 2e40bb4 bd972fb 2e40bb4 d9bc1e6 2e40bb4 d9bc1e6 2e40bb4 d9bc1e6 2e40bb4 d9bc1e6 346f789 2e40bb4 346f789 2e40bb4 346f789 2e40bb4 346f789 2e40bb4 346f789 2e40bb4 d9bc1e6 346f789 2e40bb4 1e9882c 2e40bb4 |
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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 |
import os
import io
import json
import base64
import random
import urllib.request
import urllib.parse
import websocket
import requests
import uuid
from dotenv import load_dotenv
from flask import Flask, request, jsonify, render_template, send_file, send_from_directory
from PIL import Image
from werkzeug.utils import secure_filename
import urllib.parse
import urllib.request
# Load environment variables from the .env file
load_dotenv()
# Initialize Flask app
app = Flask(__name__)
ALLOWED_EXTENSIONS = {'jpg', 'jpeg', 'png', 'webp'} # Define supported image types
# Set server and websocket addresses from environment variables
server_address = os.getenv("SERVER_ADDRESS")
ws_address = os.getenv("WS_ADDRESS")
# Generate a unique client ID
client_id = str(uuid.uuid4())
def allowed_file(filename):
"""Check if the uploaded file has an allowed extension."""
return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
def save_base64_image(b64_string):
"""Decode a base64 string and save it as an image in the static folder."""
try:
# Handle Data URI scheme if present
if ',' in b64_string:
header, encoded = b64_string.split(',', 1)
ext = header.split('/')[1].split(';')[0] if '/' in header else 'png'
else:
encoded = b64_string
ext = 'png'
# Decode the image data
image_data = base64.b64decode(encoded)
# Generate a unique path for the image in the static folder
image_path = f"static/{uuid.uuid4()}.{ext}"
# Ensure directory exists
os.makedirs('static', exist_ok=True)
# Save the image
with open(image_path, 'wb') as f:
f.write(image_data)
print(f"Image saved at: {image_path}")
# Return the path and URL of the saved image
image_url = f"https://gosign-de-comfyui-api.hf.space/{image_path}"
return image_path, image_url
except Exception as e:
raise ValueError(f"Failed to save image: {e}")
def get_image(filename, subfolder, image_type, token):
url_values = {'filename': filename, 'subfolder': subfolder, 'type': image_type}
url = f"{server_address}/view?{urllib.parse.urlencode(url_values)}"
req = urllib.request.Request(url)
req.add_header("Authorization", f"Bearer {token}")
try:
return urllib.request.urlopen(req).read()
except urllib.error.HTTPError as e:
print(f"HTTP Error: {e.code} - {e.reason}")
print(e.read())
raise
def get_images(ws, workflow, token):
prompt_id = queue_prompt(workflow, token)
output_images = {}
while True:
out = ws.recv()
if isinstance(out, str):
message = json.loads(out)
if message['type'] == 'executing':
data = message['data']
if data['node'] is None and data['prompt_id'] == prompt_id:
break # Execution is done
history = get_history(prompt_id, token)[prompt_id]
for node_id in history['outputs']:
node_output = history['outputs'][node_id]
images_output = []
if 'images' in node_output:
for image in node_output['images']:
image_data = get_image(image['filename'], image['subfolder'], image['type'], token)
images_output.append(image_data)
output_images[node_id] = images_output
return output_images
# Default route for home welcome
@app.route('/')
def home():
return render_template('home.html')
###############################################
# Generate text to image using FLUX1.DEV Model#
###############################################
# Generate image route
@app.route('/generate_image', methods=['POST'])
def generate_image():
data = request.json
# Extract the token from the request headers
token = request.headers.get('Authorization')
if token is None:
return jsonify({'error': 'No token provided'}), 400
if token.startswith("Bearer "):
token = token.split(" ")[1]
# Base64 decode the encoded token
# token = base64.b64decode(token).decode("utf-8")
if 'text_prompt' not in data:
return jsonify({'error': 'No text prompt provided'}), 400
text_prompt = data['text_prompt']
# Get the path to the current file's directory
current_dir = os.path.dirname(os.path.abspath(__file__))
file_path = os.path.join(current_dir, 'workflows/flux1_dev_checkpoint_workflow_api.json')
with open(file_path, 'r', encoding='utf-8') as file:
workflow_jsondata = file.read()
workflow = json.loads(workflow_jsondata)
workflow["6"]["inputs"]["text"] = text_prompt
# Generate a random 15-digit seed as an integer
seednum = random.randint(100000000000000, 999999999999999)
workflow["31"]["inputs"]["seed"] = seednum
ws = websocket.WebSocket()
try:
ws.connect(f"{ws_address}?clientId={client_id}&token={token}", header=
{"Authorization": f"Bearer {token}"})
except websocket.WebSocketException as e:
return jsonify({'error': f'WebSocket connection failed: {str(e)}'}), 500
images = get_images(ws, workflow, token)
ws.close()
output_images_base64 = []
for node_id in images:
for image_data in images[node_id]:
image = Image.open(io.BytesIO(image_data))
buffered = io.BytesIO()
image.save(buffered, format="PNG")
img_str = base64.b64encode(buffered.getvalue()).decode("utf-8")
output_images_base64.append(img_str)
return jsonify({'images': output_images_base64})
# Get image route
@app.route('/get_image/<filename>', methods=['GET'])
def get_image_file(filename):
return send_file(filename, mimetype='image/png')
# Route to serve images
@app.route('/static/<path:filename>')
def serve_static(filename):
return send_from_directory('static', filename)
# Make a request route
def make_request(url, data=None, headers=None):
req = urllib.request.Request(url, data=data, headers=headers)
try:
with urllib.request.urlopen(req) as response:
response_body = response.read().decode() # Decode the response
# print(response_body)
return json.loads(response_body) # Convert to JSON if valid
except urllib.error.HTTPError as e:
print(f"HTTPError: {e.code}, {e.reason}")
print(e.read().decode()) # Print detailed error response
except urllib.error.URLError as e:
print(f"URLError: {e.reason}")
# Helper: Queue the prompt
def queue_prompt(workflow, token):
payload = {"prompt": workflow, "client_id": client_id}
headers = {
'Authorization': f'Bearer {token}',
'Content-Type': 'application/json'
}
response = make_request(f"{server_address}/prompt", data=json.dumps(payload).encode('utf-8'), headers=headers)
if not response or 'prompt_id' not in response:
raise ValueError("Failed to queue the prompt. Check the request or API response.")
return response['prompt_id']
# Get ComfyUI prompt history
def get_history(prompt_id, token):
headers = {
'Authorization': f'Bearer {token}',
'Content-Type': 'application/json'
}
return make_request(f"{server_address}/history/{prompt_id}", headers=headers)
def get_video_data(filename, subfolder, token):
"""
Retrieve a video from the server using filename, subfolder, and token.
"""
# Handle empty subfolder case gracefully
subfolder = subfolder or '' # Default to empty string if None
# Construct query parameters
url_values = {
'filename': filename
}
# Build the URL with encoded query parameters
url = f"{server_address}/view?{urllib.parse.urlencode(url_values)}"
print(f"Requesting URL: {url}")
# Prepare the request with authorization token
req = urllib.request.Request(url)
req.add_header("Authorization", f"Bearer {token}")
try:
# Fetch and return the video data
response = urllib.request.urlopen(req)
return response.read()
except urllib.error.HTTPError as e:
print(f"HTTP Error: {e.code} - {e.reason}")
print(e.read().decode()) # Decode error message for readability
raise
except urllib.error.URLError as e:
print(f"URL Error: {e.reason}")
raise
##################################################
# Generate image to video using CogVideoX-5B-12V #
##################################################
# Route: Image to Video
@app.route('/image_to_video', methods=['POST'])
def image_to_video():
data = request.json
# Extract and validate token
token = request.headers.get('Authorization')
if not token or not token.startswith("Bearer "):
return jsonify({'error': 'Valid Bearer token required'}), 400
token = token.split(" ")[1]
# Validate text prompt
text_prompt = data.get('text_prompt')
if not text_prompt:
return jsonify({'error': 'Text prompt is required'}), 400
# Handle uploaded image or base64 image
image_file = request.files.get('image')
base64_image = data.get('base64_image')
if image_file:
# Check if the file has an allowed extension
if not allowed_file(image_file.filename):
return jsonify({'error': 'Unsupported image format'}), 400
# Secure the filename
filename = secure_filename(image_file.filename)
# Generate a unique path for the image
unique_filename = f"{uuid.uuid4()}_{filename}"
image_path = os.path.join('static', unique_filename)
# Ensure the 'static' directory exists
os.makedirs('static', exist_ok=True)
# Save the image to the static directory
image_file.save(image_path)
# Construct the public URL to access the image
image_url = f"https://gosign-de-comfyui-api.hf.space/{image_path}"
elif base64_image:
# Save base64 image
try:
image_path, image_url = save_base64_image(base64_image)
# return jsonify({'image_url': image_url})
except Exception as e:
return jsonify({'error': f'Invalid base64 image data: {str(e)}'}), 400
else:
return jsonify({'error': 'Image is required (file or base64)'}), 400
# Load workflow configuration
current_dir = os.path.dirname(os.path.abspath(__file__))
workflow_path = os.path.join(current_dir, 'workflows/cogvideox_image_to_video_workflow_api.json')
with open(workflow_path, 'r', encoding='utf-8') as f:
workflow = json.load(f)
# Modify workflow with inputs
workflow["30"]["inputs"]["prompt"] = text_prompt
workflow["73"]["inputs"]["url"] = image_url
workflow["31"]["inputs"]["prompt"] = "Low quality, watermark, strange motion"
workflow["57"]["inputs"]["seed"] = random.randint(100000000000000, 999999999999999)
# WebSocket connection to queue and monitor workflow
ws = websocket.WebSocket()
try:
ws.connect(f"{ws_address}?clientId={client_id}&token={token}", header={"Authorization": f"Bearer {token}"})
except websocket.WebSocketException as e:
return jsonify({'error': f'WebSocket connection failed: {str(e)}'}), 500
try:
prompt_id = queue_prompt(workflow, token)
except ValueError as e:
return jsonify({'error': str(e)}), 400
# Wait for workflow execution to complete
while True:
message = json.loads(ws.recv())
if message.get('type') == 'executing' and message['data']['node'] is None and message['data']['prompt_id'] == prompt_id:
break
# Fetch the complete history for the provided prompt_id
history = get_history(prompt_id, token).get(prompt_id, {})
print(f"History for prompt {prompt_id}: {history}")
video_data = None # Initialize video data
# Loop through history outputs to find video or gif data
for node_id, node_output in history.get('outputs', {}).items():
if 'gifs' in node_output:
video = node_output['gifs'][0] # Take the first GIF or video
try:
print(f"Fetching video: {video['filename']} from {video['subfolder']}")
video_data = get_video_data(video['filename'], video['subfolder'], token)
break # Stop after successfully fetching the first video or GIF
except Exception as e:
print(f"Failed to retrieve video: {str(e)}")
# Check if video data was retrieved successfully
if not video_data:
return jsonify({'error': 'Failed to generate video'}), 500
# Save the video locally
# local_video_path = f"/tmp/generated_video_{uuid.uuid4()}.mp4"
# with open(local_video_path, 'wb') as f:
# f.write(video_data)
# Return the video as an HTTP response
response = send_file(
io.BytesIO(video_data),
mimetype='video/mp4',
as_attachment=True,
download_name='generated_video.mp4'
)
# Delete the saved image after sending the response
if image_path and os.path.exists(image_path):
os.remove(image_path) # Remove the image file
return response
if __name__ == '__main__':
app.run(host='0.0.0.0', port=7860, debug=True) # Removed 'debug=True'
|