From 072262c97b2270e62467db06233ddc6363e28408 Mon Sep 17 00:00:00 2001 From: hndrr Date: Sun, 27 Apr 2025 13:59:01 +0900 Subject: [PATCH 01/11] Add new prompt for animation and update requirements - Added a new prompt for a digitally rendered animation featuring a young woman in swimwear to quick_prompts.json. - Updated requirements.txt to include the 'watchdog' package for improved file monitoring. --- PLAN.md | 92 + api/api.py | 117 +- api/settings.py | 5 + api/video_watcher.py | 93 + job_queue.json | 5523 +++++++++++++++++++++++++++++++++++++++++- quick_prompts.json | 4 + requirements.txt | 3 +- 7 files changed, 5833 insertions(+), 4 deletions(-) create mode 100644 PLAN.md create mode 100644 api/video_watcher.py diff --git a/PLAN.md b/PLAN.md new file mode 100644 index 00000000..d35c6b2b --- /dev/null +++ b/PLAN.md @@ -0,0 +1,92 @@ +# 動画連続再生機能 実装計画 + +## 概要 + +ローカルの特定ディレクトリ (`outputs`) に順次追加される動画ファイル (`.mp4`) を検知し、FastAPIのSSE (Server-Sent Events) を通じてクライアント (React想定) に通知する。クライアントは通知されたファイル名を元に動画をリクエストし、連続再生を行う。既存のFramePack API (`api/api.py`) に機能を追加し、他の機能への影響を最小限に抑える。 + +## 計画詳細 + +1. **設定更新 (`api/settings.py`):** + * 監視対象ディレクトリパス `VIDEO_DIR` を定義する。デフォルトはプロジェクトルート下の `outputs` ディレクトリとする。環境変数 `VIDEO_DIR` が設定されていれば、その値を優先する。 + * 動画ファイル配信用エンドポイントのベースURL `VIDEO_BASE_URL` を `/videos/` として定義する (主にクライアント側の参考情報)。 + +2. **ファイル監視ロジック (`api/video_watcher.py` - 新規ファイル):** + * `watchdog` ライブラリを使用する `VideoHandler` クラスを作成する。 + * `on_created` イベントハンドラを実装し、`.mp4` ファイルが作成された場合のみ、FastAPI側のSSEクライアントキューリスト (`sse_clients`) にファイル名を追加する。 + * 監視を開始/停止する関数 (`start_watcher`, `stop_watcher`) を作成する。 + * `start_watcher(path, clients)`: 指定されたパスを監視し、通知先のクライアントキューリストを受け取る。`watchdog.observers.Observer` インスタンスを初期化・開始し、そのインスタンスを返す。 + * `stop_watcher(observer)`: 受け取った `Observer` インスタンスを停止・結合する。 + +3. **FastAPIエンドポイント追加 (`api/api.py`):** + * **グローバル変数:** + * `sse_clients = []`: SSEクライアントごとの通知キュー (`asyncio.Queue` など) を保持するリスト。 + * `observer = None`: `watchdog` の `Observer` インスタンスを保持する変数。 + * **`/video_stream` (GET, SSE):** + * 新しいクライアント接続時に、専用の通知キューを作成し `sse_clients` に追加する。 + * 非同期ジェネレータ関数を定義する。 + * 無限ループでクライアントの接続状態をチェックする。 + * キューから新しいファイル名を取得し、`data: {filename}\n\n` 形式で `yield` する。 + * クライアント切断時には、対応するキューを `sse_clients` から削除し、ループを終了する。 + * `StreamingResponse` で上記ジェネレータを返す (`media_type="text/event-stream"`)。 + * **`/videos/{filename}` (GET):** + * `settings.VIDEO_DIR` とリクエストされた `filename` を結合して、動画ファイルのフルパスを構築する。 + * `os.path.exists` でファイルの存在を確認する。 + * 存在すれば `FileResponse` を使用して動画ファイル (`media_type="video/mp4"`) を返す。 + * 存在しなければ `HTTPException(status_code=404, detail="File not found")` を発生させる。 + * **`/videos` (GET):** + * `settings.VIDEO_DIR` 内のファイルを `os.listdir` で取得する。 + * ファイル名が `.mp4` で終わるもののみをフィルタリングする。 + * フィルタリングされたファイル名のリストをJSON形式で返す。 + +4. **ライフサイクル管理 (`api/api.py` の `lifespan`):** + * 既存の `lifespan` コンテキストマネージャを修正する。 + * **Startup:** + * `video_watcher.start_watcher(settings.VIDEO_DIR, sse_clients)` を呼び出し、返された `Observer` インスタンスをグローバル変数 `observer` に格納する。 + * **Shutdown:** + * グローバル変数 `observer` が `None` でなければ、`video_watcher.stop_watcher(observer)` を呼び出してファイル監視プロセスを安全に停止する。 + +5. **依存関係:** + * `watchdog` ライブラリが必要となるため、プロジェクトの依存関係ファイル (`requirements.txt` や `pyproject.toml` など) に `watchdog` を追加する。 + +## Mermaid図 + +```mermaid +graph TD + subgraph FastAPI Backend (api/api.py) + A[Client connects to /video_stream] --> B{Create SSE queue (e.g., asyncio.Queue)}; + B --> C[Add queue to global sse_clients list]; + C --> D[Start SSE generation loop (async def)]; + D -- New filename in queue --> E[yield f"data: {filename}\n\n"]; + D -- Client disconnects --> F[Remove queue from sse_clients & break loop]; + + G[Client requests /videos/{filename}] --> H{Build file path using settings.VIDEO_DIR}; + H -- os.path.exists is True --> I[Return FileResponse(path, media_type="video/mp4")]; + H -- os.path.exists is False --> J[Raise HTTPException(404)]; + + K[Client requests /videos] --> L{os.listdir(settings.VIDEO_DIR)}; + L --> M[Filter for .mp4 files, return JSON list]; + + N[lifespan startup] --> O[observer = video_watcher.start_watcher(VIDEO_DIR, sse_clients)]; + P[lifespan shutdown] --> Q[if observer: video_watcher.stop_watcher(observer)]; + end + + subgraph File System Watcher (api/video_watcher.py - New File) + R[Watchdog Observer monitors VIDEO_DIR] -- New .mp4 created --> S[VideoHandler.on_created]; + S --> T{Get filename}; + T --> U[Add filename to all queues in sse_clients list]; + V[start_watcher(path, clients)] --> W[Initialize Observer & Handler, observer.start(), return observer]; + X[stop_watcher(observer)] --> Y[observer.stop(), observer.join()]; + end + + subgraph React Frontend (Out of scope) + Z[Page load requests /videos] --> AA[Get initial file list]; + AA --> BB[Initialize playlist]; + CC[Connects to /video_stream] --> DD[Receive filename via SSE]; + DD --> EE[Add filename to playlist]; + BB & EE --> FF[Select random video from playlist]; + FF --> GG[Request /videos/{filename}]; + GG --> HH[Receive video data & play]; + end + + FastAPI_Backend -- Manages --> File_System_Watcher; +``` diff --git a/api/api.py b/api/api.py index 6339febb..e6b3ca07 100644 --- a/api/api.py +++ b/api/api.py @@ -7,6 +7,7 @@ import json import base64 # 追加: Base64エンコード用 import mimetypes # 追加: MIMEタイプ判定用 +import logging # 追加: Logging from contextlib import asynccontextmanager from fastapi import FastAPI, HTTPException, BackgroundTasks, UploadFile, File, Form, Request # Request を追加 from fastapi.responses import FileResponse, StreamingResponse # JSONResponse を削除 @@ -15,12 +16,14 @@ from PIL import Image import numpy as np from typing import List, Optional # Import Optional (Dict removed as unused) +from watchdog.observers import Observer # 追加: Watchdog Observer # Import modules created earlier (relative imports) from . import settings from . import models from . import queue_manager from . import worker +from . import video_watcher # 追加: Video Watcher module # --- Global State --- # Dictionary to hold loaded models @@ -30,13 +33,16 @@ worker_thread = None # Variable to store the ID of the currently processing job currently_processing_job_id: str | None = None +# --- Video Watcher State --- +sse_clients: List[asyncio.Queue] = [] # List to hold client queues for SSE +observer: Observer | None = None # Watchdog observer instance # --- Lifespan Context Manager --- @asynccontextmanager # Use the imported decorator directly async def lifespan(app: FastAPI): # Startup logic - global loaded_models, worker_running, worker_thread + global loaded_models, worker_running, worker_thread, observer, sse_clients # Add observer and sse_clients print("API starting up via lifespan...") # Load models try: @@ -60,10 +66,32 @@ async def lifespan(app: FastAPI): else: print("Worker already running? Skipping start in lifespan.") + # Start video watcher + try: + print(f"Attempting to start video watcher for directory: {settings.VIDEO_DIR}") + # Pass the global sse_clients list to the watcher + observer = video_watcher.start_watcher(settings.VIDEO_DIR, sse_clients) + print("Video watcher started successfully via lifespan.") + except Exception as e: + print(f"FATAL: Failed to start video watcher on startup: {e}") + traceback.print_exc() + observer = None # Ensure observer is None if startup failed + yield # Shutdown logic print("API shutting down via lifespan...") + + # Stop video watcher first + if observer: + try: + print("Stopping video watcher...") + video_watcher.stop_watcher(observer) + print("Video watcher stopped.") + except Exception as e: + print(f"Error stopping video watcher: {e}") + traceback.print_exc() + # Stop background worker if worker_running: worker_running = False @@ -572,8 +600,93 @@ async def list_loras(): return LoraListResponse(loras=lora_files) # Correct indentation for return +# === Video Streaming Endpoints === + +@app.get("/video_stream") +async def video_stream(request: Request): + """ + Streams new video filenames using Server-Sent Events (SSE). + """ + client_queue = asyncio.Queue() + sse_clients.append(client_queue) + logging.info(f"SSE client connected. Total clients: {len(sse_clients)}") + + async def event_generator(): + try: + while True: + # Check connection status first + if await request.is_disconnected(): + logging.info("SSE client disconnected.") + break + + try: + # Wait for a new filename from the queue + filename = await asyncio.wait_for(client_queue.get(), timeout=1.0) + logging.info(f"Sending SSE data: {filename}") + yield f"data: {filename}\n\n" + client_queue.task_done() + except asyncio.TimeoutError: + # No new file, continue loop to check connection status + continue + except Exception as e: + logging.error(f"Error in SSE generator: {e}") + # Optionally send an error event to the client + # yield f"event: error\ndata: {json.dumps({'message': 'Internal server error'})}\n\n" + break # Stop streaming on unexpected errors + finally: + # Cleanup when client disconnects or loop breaks + if client_queue in sse_clients: + sse_clients.remove(client_queue) + logging.info(f"SSE client queue removed. Total clients: {len(sse_clients)}") + + return StreamingResponse(event_generator(), media_type="text/event-stream") + + +@app.get("/videos/{filename}") +async def get_video(filename: str): + """ + Serves a specific video file from the VIDEO_DIR. + """ + # Basic security check: prevent directory traversal + if ".." in filename or filename.startswith("/"): + raise HTTPException(status_code=400, detail="Invalid filename.") + + filepath = os.path.join(settings.VIDEO_DIR, filename) + logging.info(f"Request for video file: {filepath}") + + if not os.path.exists(filepath) or not os.path.isfile(filepath): + logging.warning(f"Video file not found: {filepath}") + raise HTTPException(status_code=404, detail="Video file not found") + + # Check if the file is an mp4 file (optional but recommended) + if not filename.lower().endswith(".mp4"): + raise HTTPException(status_code=400, detail="Invalid file type, only MP4 is supported.") + + return FileResponse(filepath, media_type="video/mp4", filename=filename) + + +@app.get("/videos", response_model=List[str]) +async def list_videos(): + """ + Lists all .mp4 files currently in the VIDEO_DIR. + """ + try: + all_files = os.listdir(settings.VIDEO_DIR) + mp4_files = sorted([f for f in all_files if f.lower().endswith(".mp4") and os.path.isfile(os.path.join(settings.VIDEO_DIR, f))]) + logging.info(f"Found {len(mp4_files)} MP4 files in {settings.VIDEO_DIR}") + return mp4_files + except FileNotFoundError: + logging.error(f"VIDEO_DIR not found: {settings.VIDEO_DIR}") + raise HTTPException(status_code=500, detail="Video directory not found on server.") + except Exception as e: + logging.error(f"Error listing videos in {settings.VIDEO_DIR}: {e}") + raise HTTPException(status_code=500, detail="Error listing video files.") + + # --- Main execution (for running with uvicorn) --- if __name__ == "__main__": import uvicorn + # Configure logging for the main execution context as well + logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s') print(f"Starting Uvicorn server on {settings.API_HOST}:{settings.API_PORT}") - uvicorn.run(app, host=settings.API_HOST, port=settings.API_PORT) + uvicorn.run("api.api:app", host=settings.API_HOST, port=settings.API_PORT, reload=True) # Use string import for reload diff --git a/api/settings.py b/api/settings.py index 2ebb5b2d..cf57557f 100644 --- a/api/settings.py +++ b/api/settings.py @@ -27,6 +27,8 @@ QUEUE_FILE_PATH = os.path.join(PROJECT_ROOT, 'job_queue.json') HF_HOME_DIR = os.path.join(PROJECT_ROOT, 'hf_download') LORA_DIR = os.environ.get("LORA_DIR", os.path.join(PROJECT_ROOT, 'loras')) +# Video Watcher Settings +VIDEO_DIR = os.environ.get("VIDEO_DIR", OUTPUTS_DIR) # Use OUTPUTS_DIR as default if env var not set # Ensure directories exist (These should ideally be created outside the API module if they don't exist) @@ -34,6 +36,8 @@ os.makedirs(TEMP_QUEUE_IMAGES_DIR, exist_ok=True) os.makedirs(HF_HOME_DIR, exist_ok=True) os.makedirs(LORA_DIR, exist_ok=True) +# Ensure VIDEO_DIR exists (especially if it's different from OUTPUTS_DIR) +os.makedirs(VIDEO_DIR, exist_ok=True) # Set Hugging Face home directory environment variable os.environ['HF_HOME'] = HF_HOME_DIR @@ -55,6 +59,7 @@ print(f" LoRA Dir: {LORA_DIR}") print(f" Worker Check Interval: {WORKER_CHECK_INTERVAL}") print(f" Allowed Origins: {ALLOWED_ORIGINS}") +print(f" Video Dir (for watcher): {VIDEO_DIR}") # --- Job Cleanup Settings --- # Maximum number of completed, cancelled, or failed jobs to keep in the queue file. diff --git a/api/video_watcher.py b/api/video_watcher.py new file mode 100644 index 00000000..68f6f7e2 --- /dev/null +++ b/api/video_watcher.py @@ -0,0 +1,93 @@ +import os +import asyncio +import logging +from watchdog.observers import Observer +from watchdog.events import FileSystemEventHandler +from typing import List + +# Configure logging +logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s') + + +class VideoHandler(FileSystemEventHandler): + """Handles file system events for video files.""" + + def __init__(self, sse_clients: List[asyncio.Queue]): + """ + Initializes the handler with a list of SSE client queues. + + Args: + sse_clients: A list of asyncio.Queue instances for notifying clients. + """ + self.sse_clients = sse_clients + logging.info(f"VideoHandler initialized with {len(sse_clients)} client queues initially.") + + def on_created(self, event): + """ + Called when a file or directory is created. + + Args: + event: The event object representing the file system event. + """ + if event.is_directory: + logging.debug(f"Ignoring directory creation: {event.src_path}") + return + + if event.src_path.lower().endswith(".mp4"): + filename = os.path.basename(event.src_path) + logging.info(f"New MP4 file detected: {filename}") + # Notify all connected SSE clients + # Use a copy of the list to avoid issues if a client disconnects during iteration + clients_to_notify = list(self.sse_clients) + logging.info(f"Notifying {len(clients_to_notify)} clients about new file: {filename}") + for queue in clients_to_notify: + try: + # Use put_nowait as this handler runs in a separate thread + # managed by watchdog, not in the main asyncio event loop. + queue.put_nowait(filename) + logging.debug(f"Added '{filename}' to a client queue.") + except asyncio.QueueFull: + logging.warning(f"Client queue is full. Could not add '{filename}'.") + except Exception as e: + logging.error(f"Error adding '{filename}' to client queue: {e}") + else: + logging.debug(f"Ignoring non-MP4 file creation: {event.src_path}") + + +def start_watcher(path: str, sse_clients: List[asyncio.Queue]) -> Observer: + """ + Starts the file system watcher. + + Args: + path: The directory path to watch. + sse_clients: The list of SSE client queues to notify. + + Returns: + The Observer instance that was started. + """ + if not os.path.isdir(path): + logging.error(f"Watch directory does not exist or is not a directory: {path}") + # Consider raising an exception or returning None + raise ValueError(f"Invalid watch directory: {path}") + + event_handler = VideoHandler(sse_clients) + observer = Observer() + observer.schedule(event_handler, path, recursive=False) + observer.start() + logging.info(f"Started watching directory: {path}") + return observer + + +def stop_watcher(observer: Observer): + """ + Stops the file system watcher. + + Args: + observer: The Observer instance to stop. + """ + if observer and observer.is_alive(): + observer.stop() + observer.join() # Wait for the thread to finish + logging.info("Stopped file system watcher.") + else: + logging.info("File system watcher was not running or already stopped.") \ No newline at end of file diff --git a/job_queue.json b/job_queue.json index 0637a088..d2fc8665 100644 --- a/job_queue.json +++ b/job_queue.json @@ -1 +1,5522 @@ -[] \ No newline at end of file +[ + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d5f6eb1e.png", + "video_length": 1.0, + "job_id": "d5f6eb1e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 20, + "cfg": 7.0, + "gs": 1.0, + "rs": 1.0, + "status": "processing", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 42.5, + "progress_step": 5, + "progress_total": 20, + "progress_info": "Sampling section 1/1 - Step 5/20", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b7a2ccbc.png", + "video_length": 1.0, + "job_id": "b7a2ccbc", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 20, + "cfg": 7.0, + "gs": 1.0, + "rs": 1.0, + "status": "cancelled", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 39.0, + "progress_step": 4, + "progress_total": 20, + "progress_info": "Sampling section 1/1 - Step 4/20", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9d6b3eb1.png", + "video_length": 1.0, + "job_id": "9d6b3eb1", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2aee5e46.png", + "video_length": 2.0, + "job_id": "2aee5e46", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8e696408.png", + "video_length": 2.0, + "job_id": "8e696408", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "cancelled", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 44.6, + "progress_step": 14, + "progress_total": 25, + "progress_info": "Sampling section 1/2 - Step 14/25", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_de8531d9.png", + "video_length": 2.0, + "job_id": "de8531d9", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2a5a6f9c.png", + "video_length": 2.0, + "job_id": "2a5a6f9c", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_320b3f4a.png", + "video_length": 5.0, + "job_id": "320b3f4a", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2fd058f9.png", + "video_length": 5.0, + "job_id": "2fd058f9", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5ac13392.png", + "video_length": 5.0, + "job_id": "5ac13392", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2a271c1e.png", + "video_length": 5.0, + "job_id": "2a271c1e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "A woman Ahegao", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0aae29ea.png", + "video_length": 1.0, + "job_id": "0aae29ea", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "ahegao_hunyuan_video_v1_e18.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "A woman Ahegao", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_fd7bdb81.png", + "video_length": 1.0, + "job_id": "fd7bdb81", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "ahegao_hunyuan_video_v1_e18.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "A woman Ahegao", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3f14eee9.png", + "video_length": 1.0, + "job_id": "3f14eee9", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "ahegao_hunyuan_video_v1_e18.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "A woman Ahegao", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8f54a69c.png", + "video_length": 1.0, + "job_id": "8f54a69c", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "ahegao_hunyuan_video_v1_e18.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_193fc0f2.png", + "video_length": 1.0, + "job_id": "193fc0f2", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 2.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dd561932.png", + "video_length": 1.0, + "job_id": "dd561932", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_acbc2208.png", + "video_length": 1.0, + "job_id": "acbc2208", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 0.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2cce0e9b.png", + "video_length": 1.0, + "job_id": "2cce0e9b", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f36e577d.png", + "video_length": 1.0, + "job_id": "f36e577d", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b456e8ef.png", + "video_length": 1.0, + "job_id": "b456e8ef", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6003824c.png", + "video_length": 1.0, + "job_id": "6003824c", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_edd7c3ff.png", + "video_length": 1.0, + "job_id": "edd7c3ff", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f2aeb330.png", + "video_length": 1.0, + "job_id": "f2aeb330", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 0.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9ea7c486.png", + "video_length": 1.0, + "job_id": "9ea7c486", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_239e55d5.png", + "video_length": 1.0, + "job_id": "239e55d5", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_69b5ce76.png", + "video_length": 1.0, + "job_id": "69b5ce76", + "seed": 33333, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 2.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_fdca9f62.png", + "video_length": 2.0, + "job_id": "fdca9f62", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "tittydrop_v1.1.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5bc88b01.png", + "video_length": 2.0, + "job_id": "5bc88b01", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "failed - RuntimeError", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 25.0, + "progress_step": 0, + "progress_total": 25, + "progress_info": "Failed: RuntimeError", + "lora_scale": 1.0, + "lora_path": "tittydrop_v1.1.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0b5ffe2b.png", + "video_length": 2.0, + "job_id": "0b5ffe2b", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "failed - RuntimeError", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 25.0, + "progress_step": 0, + "progress_total": 25, + "progress_info": "Failed: RuntimeError", + "lora_scale": 1.0, + "lora_path": "tittydrop_v1.1.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_09d2b149.png", + "video_length": 2.0, + "job_id": "09d2b149", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "failed - RuntimeError", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 25.0, + "progress_step": 0, + "progress_total": 25, + "progress_info": "Failed: RuntimeError", + "lora_scale": 1.0, + "lora_path": "tittydrop_v1.1.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1797cc8f.png", + "video_length": 2.0, + "job_id": "1797cc8f", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "processing", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 25.0, + "progress_step": 0, + "progress_total": 25, + "progress_info": "Sampling section 1/2", + "lora_scale": 1.0, + "lora_path": "tittydrop_v1.1.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_54cea4b1.png", + "video_length": 2.0, + "job_id": "54cea4b1", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "processing", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 39.0, + "progress_step": 10, + "progress_total": 25, + "progress_info": "Sampling section 1/2 - Step 10/25", + "lora_scale": 1.0, + "lora_path": "tittydrop_v1.1.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d78a6e90.png", + "video_length": 2.0, + "job_id": "d78a6e90", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "processing", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 0, + "progress_step": 0, + "progress_total": 25, + "progress_info": "Starting ...", + "lora_scale": 1.0, + "lora_path": "tittydrop_v1.1.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d69ac499.png", + "video_length": 2.0, + "job_id": "d69ac499", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "processing", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 50.2, + "progress_step": 18, + "progress_total": 25, + "progress_info": "Sampling section 1/2 - Step 18/25", + "lora_scale": 1.0, + "lora_path": "tittydrop_v1.1.safetensors", + "updated_at": "2025-04-23T17:46:15.367530+00:00" + }, + { + "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5a6d9739.png", + "video_length": 2.0, + "job_id": "5a6d9739", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:53:55.213457+00:00" + }, + { + "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d5a5bbc4.png", + "video_length": 2.0, + "job_id": "d5a5bbc4", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T17:58:11.212047+00:00" + }, + { + "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c8531c1a.png", + "video_length": 2.0, + "job_id": "c8531c1a", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T18:02:04.632430+00:00" + }, + { + "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_bc7ec1d9.png", + "video_length": 2.0, + "job_id": "bc7ec1d9", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T18:06:05.740034+00:00" + }, + { + "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b7722620.png", + "video_length": 2.0, + "job_id": "b7722620", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T18:10:13.320239+00:00" + }, + { + "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_93789e20.png", + "video_length": 2.0, + "job_id": "93789e20", + "seed": -3317, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T18:41:43.191876+00:00" + }, + { + "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b5c7d7a8.png", + "video_length": 2.0, + "job_id": "b5c7d7a8", + "seed": 3317, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "cancelled", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 0.0, + "progress_step": 0, + "progress_total": 0, + "progress_info": "", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T18:40:23.350978+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b61b65d9.png", + "video_length": 2.0, + "job_id": "b61b65d9", + "seed": 3317, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T18:45:48.086670+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1119f8da.png", + "video_length": 2.0, + "job_id": "1119f8da", + "seed": 3317, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T18:49:46.759765+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8286f993.png", + "video_length": 2.0, + "job_id": "8286f993", + "seed": 3317, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T18:53:56.389309+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_108a70c4.png", + "video_length": 2.0, + "job_id": "108a70c4", + "seed": 3317, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T18:58:33.840285+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_37c5ccbc.png", + "video_length": 2.0, + "job_id": "37c5ccbc", + "seed": 3317, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T19:02:50.073619+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7fe25b70.png", + "video_length": 2.0, + "job_id": "7fe25b70", + "seed": 3317, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T19:07:19.235907+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_26bd875e.png", + "video_length": 2.0, + "job_id": "26bd875e", + "seed": 3317, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 2.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T19:11:34.705593+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f502b58a.png", + "video_length": 2.0, + "job_id": "f502b58a", + "seed": 3316, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 2.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T19:16:00.116608+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6d7e05e6.png", + "video_length": 2.0, + "job_id": "6d7e05e6", + "seed": 3316, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 2.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T19:20:14.630250+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2d4cdc8a.png", + "video_length": 2.0, + "job_id": "2d4cdc8a", + "seed": 3316, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 0.8, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T19:24:29.654979+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d5ad22fa.png", + "video_length": 2.0, + "job_id": "d5ad22fa", + "seed": 3315, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 0.8, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T19:28:48.313094+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c2abc8d7.png", + "video_length": 5.0, + "job_id": "c2abc8d7", + "seed": 3315, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 0.8, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-23T19:37:02.919806+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_44cf0478.png", + "video_length": 1.0, + "job_id": "44cf0478", + "seed": 3315, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 0.8, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-24T00:46:03.199127+00:00" + }, + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5883b044.jpg", + "video_length": 1.0, + "job_id": "5883b044", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "handbra-ds3-epoch105.safetensors", + "updated_at": "2025-04-24T01:13:30.568838+00:00" + }, + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_72692b8a.jpg", + "video_length": 1.0, + "job_id": "72692b8a", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "bouncing_breasts_hunyuan.safetensors", + "updated_at": "2025-04-24T02:17:45.395444+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_88842a8b.jpg", + "video_length": 5.0, + "job_id": "88842a8b", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-24T02:24:34.710596+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_006be731.jpg", + "video_length": 4.0, + "job_id": "006be731", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-24T02:29:31.315523+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1dde064b.jpg", + "video_length": 4.0, + "job_id": "1dde064b", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-24T02:34:18.556449+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6e704513.jpg", + "video_length": 4.0, + "job_id": "6e704513", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-24T02:39:12.817211+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_07b5a078.jpg", + "video_length": 4.0, + "job_id": "07b5a078", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-24T02:44:30.304068+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_88a78617.jpg", + "video_length": 4.0, + "job_id": "88a78617", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-24T02:49:31.908584+00:00" + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_600a8098.jpg", + "video_length": 4.0, + "job_id": "600a8098", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-24T02:54:30.182240+00:00" + }, + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b2e721bf.jpg", + "video_length": 5.0, + "job_id": "b2e721bf", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T07:35:04.016172+00:00" + }, + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b9fe74c3.jpg", + "video_length": 5.0, + "job_id": "b9fe74c3", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T07:40:52.556730+00:00" + }, + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_92f7d76e.jpg", + "video_length": 5.0, + "job_id": "92f7d76e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T07:46:33.043157+00:00" + }, + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3f2af63a.jpg", + "video_length": 5.0, + "job_id": "3f2af63a", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T07:52:12.968593+00:00" + }, + { + "prompt": "wave one's hand", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7c6af4f1.jpg", + "video_length": 5.0, + "job_id": "7c6af4f1", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T08:21:15.993951+00:00" + }, + { + "prompt": "wave one's hand", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2c5fdb22.jpg", + "video_length": 1.0, + "job_id": "2c5fdb22", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T08:22:52.086713+00:00" + }, + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ef9636f1.jpg", + "video_length": 1.0, + "job_id": "ef9636f1", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T08:25:03.909263+00:00" + }, + { + "prompt": "eye wink", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ca26d024.jpg", + "video_length": 1.0, + "job_id": "ca26d024", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T08:32:21.636122+00:00" + }, + { + "prompt": "Smile and waving", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_540f229d.jpg", + "video_length": 2.0, + "job_id": "540f229d", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T08:48:38.391942+00:00" + }, + { + "prompt": "smile and waving", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_219f4f7f.jpg", + "video_length": 1.0, + "job_id": "219f4f7f", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T08:50:16.043580+00:00" + }, + { + "prompt": "A character dancing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_64d92be0.jpg", + "video_length": 2.0, + "job_id": "64d92be0", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "", + "updated_at": "2025-04-24T09:06:20.762659+00:00" + }, + { + "prompt": "A character dancing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1dfe8bbe.jpg", + "video_length": 3.0, + "job_id": "1dfe8bbe", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "", + "updated_at": "2025-04-24T09:09:22.986581+00:00" + }, + { + "prompt": "A character dancing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_318688ef.jpg", + "video_length": 3.0, + "job_id": "318688ef", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "breast_drop_v2_170.safetensors", + "updated_at": "2025-04-24T09:17:01.016551+00:00" + }, + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_34d74c55.jpg", + "video_length": 2.0, + "job_id": "34d74c55", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "failed - RuntimeError", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 25, + "progress_step": 0, + "progress_total": 25, + "progress_info": "Failed: RuntimeError", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T10:55:09.457556+00:00" + }, + { + "prompt": "A character doing some simple body movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_59c7a169.jpg", + "video_length": 2.0, + "job_id": "59c7a169", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "failed - RuntimeError", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 25, + "progress_step": 0, + "progress_total": 25, + "progress_info": "Failed: RuntimeError", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T11:06:53.722483+00:00" + }, + { + "prompt": "dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_35da387b.jpg", + "video_length": 2.0, + "job_id": "35da387b", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "failed - RuntimeError", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 25, + "progress_step": 0, + "progress_total": 25, + "progress_info": "Failed: RuntimeError", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T11:52:30.303585+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_72db3c13.jpg", + "video_length": 2.0, + "job_id": "72db3c13", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "failed - RuntimeError", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 25, + "progress_step": 0, + "progress_total": 25, + "progress_info": "Failed: RuntimeError", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T12:33:05.163013+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2f8a068d.jpg", + "video_length": 2.0, + "job_id": "2f8a068d", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "failed - RuntimeError", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 25, + "progress_step": 0, + "progress_total": 25, + "progress_info": "Failed: RuntimeError", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T12:44:59.423940+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f8a26a84.jpg", + "video_length": 2.0, + "job_id": "f8a26a84", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T12:55:13.378676+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f9674c0c.jpg", + "video_length": 2.0, + "job_id": "f9674c0c", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T12:58:21.437393+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3803c3fc.jpg", + "video_length": 2.0, + "job_id": "3803c3fc", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:01:14.226643+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_fb8e2532.jpg", + "video_length": 2.0, + "job_id": "fb8e2532", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:08:16.790325+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_72996a4e.jpg", + "video_length": 2.0, + "job_id": "72996a4e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:16:57.733792+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1d5eba58.jpg", + "video_length": 2.0, + "job_id": "1d5eba58", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:22:15.524281+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_08854c01.jpg", + "video_length": 2.0, + "job_id": "08854c01", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:25:04.991756+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_cc5828bd.jpg", + "video_length": 2.0, + "job_id": "cc5828bd", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:27:55.140183+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c30bed4d.jpg", + "video_length": 2.0, + "job_id": "c30bed4d", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:30:48.403910+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ef9e9257.jpg", + "video_length": 2.0, + "job_id": "ef9e9257", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:33:38.483274+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ff20163e.jpg", + "video_length": 2.0, + "job_id": "ff20163e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:36:28.775580+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e07df2d2.jpg", + "video_length": 2.0, + "job_id": "e07df2d2", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:39:19.104972+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_922db79e.jpg", + "video_length": 2.0, + "job_id": "922db79e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:42:10.394745+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c4d916b2.jpg", + "video_length": 1.0, + "job_id": "c4d916b2", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:45:33.884319+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5e9fd15e.jpg", + "video_length": 1.0, + "job_id": "5e9fd15e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:47:58.483324+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_545c7d55.jpg", + "video_length": 1.0, + "job_id": "545c7d55", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T13:52:25.770124+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_79ecd580.jpg", + "video_length": 1.0, + "job_id": "79ecd580", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T14:11:07.584110+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d2b53b10.jpg", + "video_length": 2.0, + "job_id": "d2b53b10", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T14:25:03.408051+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_94d3f0ff.jpg", + "video_length": 1.0, + "job_id": "94d3f0ff", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T14:31:04.173829+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3a88860e.jpg", + "video_length": 1.0, + "job_id": "3a88860e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T14:43:32.646940+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_49e9a771.jpg", + "video_length": 1.0, + "job_id": "49e9a771", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T14:54:10.783115+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0232477e.jpg", + "video_length": 1.0, + "job_id": "0232477e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T14:56:30.809204+00:00" + }, + { + "prompt": "action kick punch", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_193c8909.jpg", + "video_length": 1.0, + "job_id": "193c8909", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T14:58:48.281989+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9fc7b0f0.jpg", + "video_length": 2.0, + "job_id": "9fc7b0f0", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T15:09:52.095968+00:00" + }, + { + "prompt": "jump, punch, kick", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a9a30974.jpg", + "video_length": 2.0, + "job_id": "a9a30974", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T15:13:13.192324+00:00" + }, + { + "prompt": "jump, punch, kick", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0d0c25be.jpg", + "video_length": 2.0, + "job_id": "0d0c25be", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T15:16:26.396889+00:00" + }, + { + "prompt": "take off her clothes, naked,", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8097580f.jpg", + "video_length": 2.0, + "job_id": "8097580f", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T15:28:34.469384+00:00" + }, + { + "prompt": "take off her clothes, naked,", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c800f1d5.jpg", + "video_length": 2.0, + "job_id": "c800f1d5", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T15:31:35.775719+00:00" + }, + { + "prompt": "take off her clothes, naked,", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_33d9a73d.jpg", + "video_length": 3.0, + "job_id": "33d9a73d", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T15:34:45.581414+00:00" + }, + { + "prompt": "take off her clothes, naked,", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1bc99a4d.jpg", + "video_length": 3.0, + "job_id": "1bc99a4d", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T15:40:12.316725+00:00" + }, + { + "prompt": "dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_47b48675.jpg", + "video_length": 3.0, + "job_id": "47b48675", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T15:49:58.436522+00:00" + }, + { + "prompt": "dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b157c304.jpg", + "video_length": 3.0, + "job_id": "b157c304", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T16:06:03.286380+00:00" + }, + { + "prompt": "dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c937d5bb.jpg", + "video_length": 3.0, + "job_id": "c937d5bb", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-24T16:09:09.175670+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_62379a47.jpg", + "video_length": 2.0, + "job_id": "62379a47", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_62379a47.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T01:44:09.318652+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e36af6d6.jpg", + "video_length": 2.0, + "job_id": "e36af6d6", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e36af6d6.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T01:47:46.406873+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b76c381b.jpg", + "video_length": 2.0, + "job_id": "b76c381b", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_b76c381b.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T01:50:17.010977+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d832846c.jpg", + "video_length": 2.0, + "job_id": "d832846c", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_d832846c.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T01:54:07.735727+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e41e5ef6.jpg", + "video_length": 2.0, + "job_id": "e41e5ef6", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e41e5ef6.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T01:58:17.634018+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_33586767.jpg", + "video_length": 1.0, + "job_id": "33586767", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_33586767.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T02:03:28.249651+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c3e98312.jpg", + "video_length": 2.0, + "job_id": "c3e98312", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_c3e98312.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T02:16:03.212333+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0aad35d6.jpg", + "video_length": 1.0, + "job_id": "0aad35d6", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0aad35d6.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T02:17:18.918958+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d0358124.jpg", + "video_length": 2.0, + "job_id": "d0358124", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_d0358124.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T02:46:05.873585+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c9ef1122.jpg", + "video_length": 2.0, + "job_id": "c9ef1122", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_c9ef1122.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T02:48:39.528034+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c2bc91b6.jpg", + "video_length": 2.0, + "job_id": "c2bc91b6", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_c2bc91b6.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T02:53:57.176418+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6ac41e56.jpg", + "video_length": 2.0, + "job_id": "6ac41e56", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6ac41e56.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T03:03:30.042700+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7de79a7c.jpg", + "video_length": 2.0, + "job_id": "7de79a7c", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7de79a7c.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T03:05:56.021154+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d90472e1.jpg", + "video_length": 2.0, + "job_id": "d90472e1", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_d90472e1.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T03:11:37.288013+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_32c768e6.jpg", + "video_length": 2.0, + "job_id": "32c768e6", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_32c768e6.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T03:16:29.662350+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_232d54ed.jpg", + "video_length": 2.0, + "job_id": "232d54ed", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_232d54ed.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T03:29:27.416859+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3aa32aab.jpg", + "video_length": 2.0, + "job_id": "3aa32aab", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_3aa32aab.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T03:31:54.804829+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_bcc7a45c.jpg", + "video_length": 2.0, + "job_id": "bcc7a45c", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_bcc7a45c.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T03:35:40.541359+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0e47c984.jpg", + "video_length": 2.0, + "job_id": "0e47c984", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0e47c984.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T03:38:22.237188+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9f6c4e20.jpg", + "video_length": 2.0, + "job_id": "9f6c4e20", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9f6c4e20.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T03:47:15.359088+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6b3959af.jpg", + "video_length": 2.0, + "job_id": "6b3959af", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6b3959af.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T03:56:31.384680+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_fe2cb76a.jpg", + "video_length": 2.0, + "job_id": "fe2cb76a", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_fe2cb76a.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T04:01:43.411859+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7844d8ca.jpg", + "video_length": 1.0, + "job_id": "7844d8ca", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7844d8ca.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T04:09:09.708193+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9c81fb2b.jpg", + "video_length": 1.0, + "job_id": "9c81fb2b", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9c81fb2b.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T04:27:40.530787+00:00" + }, + { + "prompt": "The girl dances lively, with joyful arm and leg movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4dee2ed3.jpg", + "video_length": 1.0, + "job_id": "4dee2ed3", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4dee2ed3.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T04:52:08.791070+00:00" + }, + { + "prompt": "The girl sings passionately, with her mouth open wide and her eyes expressive, as she gestures with one hand on her hip.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7ea7c7f5.jpg", + "video_length": 1.0, + "job_id": "7ea7c7f5", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7ea7c7f5.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T04:53:23.376822+00:00" + }, + { + "prompt": "The girl yawns sleepily, stretching her arms and swaying gently as she tries to wake up.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1e4ea95e.jpg", + "video_length": 1.0, + "job_id": "1e4ea95e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_1e4ea95e.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T04:54:36.625047+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_05917df2.jpg", + "video_length": 2.0, + "job_id": "05917df2", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_05917df2.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T05:14:24.082331+00:00" + }, + { + "prompt": "The cute cartoon bear smiles and dances happily, with lively arm movements and cheerful energy.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ee4bdef3.jpg", + "video_length": 2.0, + "job_id": "ee4bdef3", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ee4bdef3.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T05:16:45.796271+00:00" + }, + { + "prompt": "The cartoon character smiles brightly and dances joyfully, with energetic movements and lively steps.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a67a7c84.jpg", + "video_length": 2.0, + "job_id": "a67a7c84", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_a67a7c84.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T05:26:37.020696+00:00" + }, + { + "prompt": "The girl smiles warmly and dances gently, her movements graceful and full of joy.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_24eb106f.jpg", + "video_length": 1.0, + "job_id": "24eb106f", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_24eb106f.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T07:04:52.121880+00:00" + }, + { + "prompt": "The girl smiles warmly and dances gently, her movements graceful and full of joy.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dcb8d4a6.jpg", + "video_length": 1.0, + "job_id": "dcb8d4a6", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_dcb8d4a6.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T07:08:05.478690+00:00" + }, + { + "prompt": "The happy, smiling rectangle character dances playfully, moving its arms and body with lively, cheerful motions.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4acd8266.jpg", + "video_length": 2.0, + "job_id": "4acd8266", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4acd8266.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T07:33:04.867159+00:00" + }, + { + "prompt": "The cute cartoon piece of bread happily dances with two peace signs, showcasing a cheerful and lively motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0ab0c2e9.jpg", + "video_length": 2.0, + "job_id": "0ab0c2e9", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0ab0c2e9.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T07:38:01.484259+00:00" + }, + { + "prompt": "The cute cartoon piece of bread happily dances with two peace signs, showcasing a cheerful and lively motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dbc3aa41.jpg", + "video_length": 2.0, + "job_id": "dbc3aa41", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_dbc3aa41.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T07:40:40.462196+00:00" + }, + { + "prompt": "The cute character smiles brightly and dances happily, waving its hand energetically.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a3df7252.jpg", + "video_length": 1.0, + "job_id": "a3df7252", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_a3df7252.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T13:58:15.282088+00:00" + }, + { + "prompt": "The robot dances joyfully, waving its hand energetically and smiling brightly.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_56960830.jpg", + "video_length": 1.0, + "job_id": "56960830", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_56960830.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T14:01:05.255987+00:00" + }, + { + "prompt": "\u5973\u306e\u5b50\u304c\u6a2a\u56de\u8ee2", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6e85a80e.jpg", + "video_length": 3.0, + "job_id": "6e85a80e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6e85a80e.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T14:04:20.729333+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_263796a5.jpg", + "video_length": 4.0, + "job_id": "263796a5", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_263796a5.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T14:15:36.701736+00:00" + }, + { + "prompt": "The plush bunny trembles violently, as dark red blood oozes and drips from its head and limbs, creating a chilling, horror-filled scene.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8d55073f.jpg", + "video_length": 4.0, + "job_id": "8d55073f", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_8d55073f.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T14:26:50.978785+00:00" + }, + { + "prompt": "The plush bunny shakes violently, with blood splattering and dripping from its head and limbs, creating a disturbing, horror-filled scene.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4c17699a.jpg", + "video_length": 4.0, + "job_id": "4c17699a", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4c17699a.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T14:33:36.098525+00:00" + }, + { + "prompt": "The character, with a rabbit mask, stands confidently, wielding a sword in one hand, and gestures with the other hand as if preparing for action.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_29fa4aca.jpg", + "video_length": 2.0, + "job_id": "29fa4aca", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_29fa4aca.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T14:40:22.671188+00:00" + }, + { + "prompt": "The character with a rabbit mask dances aggressively, swinging a sword with dynamic movements while gesturing fiercely with the other hand.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_31e43f00.jpg", + "video_length": 2.0, + "job_id": "31e43f00", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_31e43f00.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T16:01:58.444283+00:00" + }, + { + "prompt": "The person smiles confidently, then begins to dance lively, with smooth arm movements and energetic footwork.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_bf401822.jpg", + "video_length": 2.0, + "job_id": "bf401822", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_bf401822.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-25T16:52:43.407479+00:00" + }, + { + "prompt": "A character doing some simple body movements. kxsr", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f732c235.jpg", + "video_length": 3.0, + "job_id": "f732c235", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_f732c235.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": "kxsr_orbitcam_v2.safetensors", + "updated_at": "2025-04-25T18:34:34.948198+00:00" + }, + { + "prompt": "The cute animated mouse smiles brightly and dances joyfully, with lively and playful movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ac8a2874.jpg", + "video_length": 1.0, + "job_id": "ac8a2874", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ac8a2874.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T02:42:02.669122+00:00" + }, + { + "prompt": "The cute animated mouse smiles brightly and dances joyfully, with lively and playful movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_401ccfca.jpg", + "video_length": 3.0, + "job_id": "401ccfca", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_401ccfca.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:01:32.511174+00:00" + }, + { + "prompt": "The character runs energetically, then transitions into a lively dance with joyful movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0ef68668.jpg", + "video_length": 3.0, + "job_id": "0ef68668", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0ef68668.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:03:44.316897+00:00" + }, + { + "prompt": "The cute bunny character smiles brightly and dances joyfully, with lively arm movements and cheerful steps.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_53cee8b1.jpg", + "video_length": 2.0, + "job_id": "53cee8b1", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_53cee8b1.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:15:18.475349+00:00" + }, + { + "prompt": "smile and dancing", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6f3b980b.jpg", + "video_length": 2.0, + "job_id": "6f3b980b", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6f3b980b.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:17:36.200006+00:00" + }, + { + "prompt": "The cute bunny character smiles brightly and dances joyfully, with lively arm movements and cheerful steps.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6e2c9d2e.jpg", + "video_length": 2.0, + "job_id": "6e2c9d2e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6e2c9d2e.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:19:57.436930+00:00" + }, + { + "prompt": "The cute pink character smiles brightly and dances happily, swaying rhythmically with cheerful movement.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f98c96b0.jpg", + "video_length": 2.0, + "job_id": "f98c96b0", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_f98c96b0.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:23:14.514379+00:00" + }, + { + "prompt": "A man adjusts his tie confidently, then slowly turns and walks forward with a purposeful stride.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d50c99a0.jpg", + "video_length": 2.0, + "job_id": "d50c99a0", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_d50c99a0.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:25:43.816374+00:00" + }, + { + "prompt": "The man jumps joyfully, waving his arms enthusiastically with a big smile on his face.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6141285e.jpg", + "video_length": 2.0, + "job_id": "6141285e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6141285e.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:30:53.123455+00:00" + }, + { + "prompt": "The cute character smiles brightly and dances joyfully, moving energetically with happy gestures.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2f8f30e3.jpg", + "video_length": 2.0, + "job_id": "2f8f30e3", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_2f8f30e3.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:42:35.416636+00:00" + }, + { + "prompt": "The girl jumps joyfully, waving her hands and flashing peace signs, full of energetic movement.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8b296710.jpg", + "video_length": 2.0, + "job_id": "8b296710", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_8b296710.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:47:46.170840+00:00" + }, + { + "prompt": "The robot dances energetically, with lively arm and leg movements, full of vibrant motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_aaa943b6.jpg", + "video_length": 2.0, + "job_id": "aaa943b6", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_aaa943b6.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:53:31.284482+00:00" + }, + { + "prompt": "The character dances happily, with lively and energetic movements, flashing a peace sign with one hand.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2da79eed.jpg", + "video_length": 2.0, + "job_id": "2da79eed", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_2da79eed.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T03:59:08.867817+00:00" + }, + { + "prompt": "A cute animated plant character dances joyfully, with energetic steps and lively movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a879df6e.jpg", + "video_length": 2.0, + "job_id": "a879df6e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_a879df6e.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T04:05:31.765621+00:00" + }, + { + "prompt": "The cheerful character with a peach-shaped head and green body jumps energetically, with arms raised and legs bent, capturing a lively leap.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ad3939cf.jpg", + "video_length": 2.0, + "job_id": "ad3939cf", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ad3939cf.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T04:10:36.305106+00:00" + }, + { + "prompt": "The cute character dances joyfully, with lively arm and leg movements, as if celebrating happily.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c196d27f.jpg", + "video_length": 2.0, + "job_id": "c196d27f", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_c196d27f.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T04:14:03.526868+00:00" + }, + { + "prompt": "The cartoon character performs a middle kick, lifting one leg high and striking forward with energetic motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_270d827e.jpg", + "video_length": 2.0, + "job_id": "270d827e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_270d827e.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T04:17:19.167723+00:00" + }, + { + "prompt": "The robot dances energetically, performing lively, rhythmic movements with its arms and legs.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_18f5ce33.jpg", + "video_length": 2.0, + "job_id": "18f5ce33", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_18f5ce33.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T04:22:17.120217+00:00" + }, + { + "prompt": "The anthropomorphic fox character raises its fist in a powerful punch, with a confident and intense expression, while crossing its arms in a bold stance.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_79c245a1.jpg", + "video_length": 2.0, + "job_id": "79c245a1", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_79c245a1.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T04:28:12.909262+00:00" + }, + { + "prompt": "dance moves like jaguar", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_bfa9ee68.jpg", + "video_length": 2.0, + "job_id": "bfa9ee68", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_bfa9ee68.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T04:35:07.694907+00:00" + }, + { + "prompt": "The flower character dances dynamically, mimicking a jaguar's sleek and powerful movements with sharp, prowling steps and agile, fluid motions.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e49cdfaa.jpg", + "video_length": 1.0, + "job_id": "e49cdfaa", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e49cdfaa.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T04:37:56.538159+00:00" + }, + { + "prompt": "The emoji character dances happily, moving its arms and body with lively, joyful motions.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9dbeaa76.jpg", + "video_length": 1.0, + "job_id": "9dbeaa76", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9dbeaa76.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T04:46:56.094679+00:00" + }, + { + "prompt": "The plush toy dances playfully, with lively and animated movements, bringing it to life.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dbbbaac5.jpg", + "video_length": 1.0, + "job_id": "dbbbaac5", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_dbbbaac5.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T04:51:26.612334+00:00" + }, + { + "prompt": "The creature glares fiercely, stomping aggressively with clenched fists, ready to fight.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_80d80b95.jpg", + "video_length": 1.0, + "job_id": "80d80b95", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_80d80b95.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T04:58:15.940405+00:00" + }, + { + "prompt": "The girl dances energetically, with lively arm movements, smiling brightly and swaying her hips.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_98c94bd9.jpg", + "video_length": 1.0, + "job_id": "98c94bd9", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_98c94bd9.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:01:59.867099+00:00" + }, + { + "prompt": "The figure passionately fights, with fists clenched and arms swinging aggressively, showing intense movement and determination.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_448f62fd.jpg", + "video_length": 1.0, + "job_id": "448f62fd", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_448f62fd.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:05:51.417770+00:00" + }, + { + "prompt": "The dragon character delivers a powerful punch, with its arm extended forward in a dynamic, aggressive motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_41ec4b35.jpg", + "video_length": 1.0, + "job_id": "41ec4b35", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_41ec4b35.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:09:06.023572+00:00" + }, + { + "prompt": "The chibi character dances joyfully, with arms outstretched and a bright smile, moving energetically against a plain background.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7b9f7a93.jpg", + "video_length": 1.0, + "job_id": "7b9f7a93", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7b9f7a93.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:13:42.811680+00:00" + }, + { + "prompt": "The figure dances energetically, with lively arm and leg movements, conveying a sense of joyful motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a5b2e9c1.jpg", + "video_length": 1.0, + "job_id": "a5b2e9c1", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_a5b2e9c1.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:22:02.319633+00:00" + }, + { + "prompt": "The animated pear character dances joyfully, with lively and energetic movements, showcasing a cheerful and playful vibe.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_fb6a503e.jpg", + "video_length": 1.0, + "job_id": "fb6a503e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_fb6a503e.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:30:20.487268+00:00" + }, + { + "prompt": "The cute yellow hamster dances happily, flashing a peace sign with one paw and smiling brightly.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4b3cc860.jpg", + "video_length": 1.0, + "job_id": "4b3cc860", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4b3cc860.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:33:41.393475+00:00" + }, + { + "prompt": "The plush fox doll dances playfully, bouncing and swaying with joyful energy.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_020a9208.jpg", + "video_length": 1.0, + "job_id": "020a9208", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_020a9208.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:39:43.012413+00:00" + }, + { + "prompt": "The cute cartoon dog dances playfully, with lively movements, swaying its body and wagging its tail.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_cd4db083.jpg", + "video_length": 1.0, + "job_id": "cd4db083", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_cd4db083.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:42:38.559898+00:00" + }, + { + "prompt": "dance", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_07f2d622.jpg", + "video_length": 1.0, + "job_id": "07f2d622", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_07f2d622.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:46:59.467273+00:00" + }, + { + "prompt": "The girl dances happily, with energetic and lively movements, as if she is joyfully bouncing and twirling.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0f3bf4c6.jpg", + "video_length": 1.0, + "job_id": "0f3bf4c6", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0f3bf4c6.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:49:07.481523+00:00" + }, + { + "prompt": "The cute yellow chick dances shyly, swaying gently with a hesitant movement.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_07bc7782.jpg", + "video_length": 1.0, + "job_id": "07bc7782", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_07bc7782.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:53:23.692101+00:00" + }, + { + "prompt": "The cartoon dragon dances energetically, lifting one leg high and swinging its arms with enthusiasm.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9c3426ed.jpg", + "video_length": 1.0, + "job_id": "9c3426ed", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9c3426ed.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T05:56:43.579858+00:00" + }, + { + "prompt": "The cute bird character flies joyfully with wings spread wide, soaring upward with a playful and energetic motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b69afc59.jpg", + "video_length": 1.0, + "job_id": "b69afc59", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_b69afc59.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:01:59.887988+00:00" + }, + { + "prompt": "The cute bird character flies joyfully with wings spread wide, soaring upward with a playful and energetic motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_380b54e5.jpg", + "video_length": 1.0, + "job_id": "380b54e5", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_380b54e5.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:04:01.557686+00:00" + }, + { + "prompt": "The figure dances joyfully, with energetic arm movements and a lively step, capturing a spirited dance motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_bac5ffca.jpg", + "video_length": 1.0, + "job_id": "bac5ffca", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_bac5ffca.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:12:53.054227+00:00" + }, + { + "prompt": "The anime girl dances happily, waving her hands and flashing peace signs with a cheerful expression.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_aa8957b5.jpg", + "video_length": 1.0, + "job_id": "aa8957b5", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_aa8957b5.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:15:02.588238+00:00" + }, + { + "prompt": "The girl dances gracefully, with lively movements, twirling her skirt and smiling brightly.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1bf4c03b.jpg", + "video_length": 1.0, + "job_id": "1bf4c03b", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_1bf4c03b.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:19:54.009062+00:00" + }, + { + "prompt": "A cute, cartoon character with an angry expression throws a powerful punch forward with one arm, body leaning into the motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1d6d4691.jpg", + "video_length": 1.0, + "job_id": "1d6d4691", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_1d6d4691.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:23:14.979424+00:00" + }, + { + "prompt": "The cartoon character throws a powerful punch forward with one arm, body leaning into the motion with an angry expression.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_30109ae5.jpg", + "video_length": 1.0, + "job_id": "30109ae5", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_30109ae5.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:24:42.610948+00:00" + }, + { + "prompt": "The dragon runs energetically, with dynamic motion and a sense of urgency.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_89e6b8d7.jpg", + "video_length": 1.0, + "job_id": "89e6b8d7", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_89e6b8d7.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:28:02.424473+00:00" + }, + { + "prompt": "The plush fox doll dances playfully, bouncing its arms and legs with joyful energy.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7c288275.jpg", + "video_length": 1.0, + "job_id": "7c288275", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7c288275.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:30:56.249411+00:00" + }, + { + "prompt": "The mascot dances energetically, with lively arm movements and a playful bounce, full of joyful motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3507101e.jpg", + "video_length": 1.0, + "job_id": "3507101e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_3507101e.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:34:50.073444+00:00" + }, + { + "prompt": "The dragon spins around once, lifting one leg high and tossing its arm forward in a dynamic dance move.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dcbe4431.jpg", + "video_length": 1.0, + "job_id": "dcbe4431", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_dcbe4431.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:38:20.869993+00:00" + }, + { + "prompt": "A cute, animated plant character dances happily, moving its arms and legs with lively, rhythmic steps against a dark background.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ef7ebca0.jpg", + "video_length": 1.0, + "job_id": "ef7ebca0", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ef7ebca0.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:42:57.240606+00:00" + }, + { + "prompt": "The cute plant character dances joyfully, moving its arms and legs with lively, rhythmic steps against a dark background.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1db362f5.jpg", + "video_length": 1.0, + "job_id": "1db362f5", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_1db362f5.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:45:23.346811+00:00" + }, + { + "prompt": "The woman jumps energetically with arms raised high, expressing excitement and joy.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7aed6132.jpg", + "video_length": 1.0, + "job_id": "7aed6132", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7aed6132.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:52:53.234294+00:00" + }, + { + "prompt": "The cute yellow character dances happily, waving its arms energetically and bouncing to the rhythm.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_038c1ea3.jpg", + "video_length": 1.0, + "job_id": "038c1ea3", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_038c1ea3.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T06:55:43.665578+00:00" + }, + { + "prompt": "The plush teddy bear walks forward confidently, with smooth, deliberate strides.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ce28f23b.jpg", + "video_length": 1.0, + "job_id": "ce28f23b", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ce28f23b.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:05:05.060400+00:00" + }, + { + "prompt": "The man walks forward confidently, with purposeful strides, as his arms swing naturally by his sides.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_166f089f.jpg", + "video_length": 1.0, + "job_id": "166f089f", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_166f089f.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:08:08.436168+00:00" + }, + { + "prompt": "The cartoon character dances joyfully, with lively arm movements and a playful jump.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_29bcbad9.jpg", + "video_length": 1.0, + "job_id": "29bcbad9", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_29bcbad9.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:11:37.910125+00:00" + }, + { + "prompt": "The cartoon dog dances joyfully, with lively and energetic movements, as if celebrating happily.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f2e10efa.jpg", + "video_length": 1.0, + "job_id": "f2e10efa", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_f2e10efa.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:14:39.661044+00:00" + }, + { + "prompt": "The robot walks forward confidently, with smooth, deliberate movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d9da63c6.jpg", + "video_length": 1.0, + "job_id": "d9da63c6", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_d9da63c6.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:18:33.176858+00:00" + }, + { + "prompt": "The robot dances energetically, with lively arm and leg movements, showing dynamic motion and rhythm.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9a968896.jpg", + "video_length": 1.0, + "job_id": "9a968896", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9a968896.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:21:04.130301+00:00" + }, + { + "prompt": "The young man clenches his fists and crosses his arms, with a fierce expression and furrowed brows, showing intense anger.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b8c8d4c7.jpg", + "video_length": 1.0, + "job_id": "b8c8d4c7", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_b8c8d4c7.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:23:44.827729+00:00" + }, + { + "prompt": "The blue cartoon creature angrily stomps and raises its fists, expressing frustration with energetic movement.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_66e3a5b6.jpg", + "video_length": 1.0, + "job_id": "66e3a5b6", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_66e3a5b6.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:24:57.365891+00:00" + }, + { + "prompt": "The cartoon leaf character is thinking, with one hand on its temple and a contemplative expression, as if deep in thought.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4a533cb7.jpg", + "video_length": 1.0, + "job_id": "4a533cb7", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4a533cb7.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:26:12.085305+00:00" + }, + { + "prompt": "The animated leaf character dances energetically, with lively arm and leg movements, exuding charm and fun.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e1755994.jpg", + "video_length": 1.0, + "job_id": "e1755994", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e1755994.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:27:56.019486+00:00" + }, + { + "prompt": "The girl walks forward with lively, natural strides, her arms swinging gently as she moves.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e41b5133.jpg", + "video_length": 1.0, + "job_id": "e41b5133", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e41b5133.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:31:22.577234+00:00" + }, + { + "prompt": "The dragon stomps energetically, swinging its leg forward as it walks with fierce determination.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9a1791d5.jpg", + "video_length": 1.0, + "job_id": "9a1791d5", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9a1791d5.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:34:39.179092+00:00" + }, + { + "prompt": "The girl dances playfully, with lively arm and leg movements, full of energy.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_62e1867e.jpg", + "video_length": 1.0, + "job_id": "62e1867e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_62e1867e.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:38:35.473323+00:00" + }, + { + "prompt": "The woman dances gracefully, with lively arm movements, as if she is twirling and enjoying the rhythm.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8765ad09.jpg", + "video_length": 1.0, + "job_id": "8765ad09", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_8765ad09.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:41:31.255838+00:00" + }, + { + "prompt": "The cartoon pig dances happily, waving one hand and bouncing with cheerful energy.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6b33b574.jpg", + "video_length": 1.0, + "job_id": "6b33b574", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6b33b574.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:52:42.334392+00:00" + }, + { + "prompt": "The plush teddy bear dances joyfully, swaying its colorful striped outfit with lively, playful movements.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a57de8ad.jpg", + "video_length": 1.0, + "job_id": "a57de8ad", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_a57de8ad.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T07:57:22.342839+00:00" + }, + { + "prompt": "The young man throws a confident punch forward, with a determined expression, as if striking with purpose.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dfef5379.jpg", + "video_length": 1.0, + "job_id": "dfef5379", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_dfef5379.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:01:33.562178+00:00" + }, + { + "prompt": "The cute bear with purple hair stands up slowly, stretching its arms and legs as it rises.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0550ef4e.jpg", + "video_length": 1.0, + "job_id": "0550ef4e", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0550ef4e.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:06:14.083395+00:00" + }, + { + "prompt": "The animated character dances cheerfully, waving peace sign with one hand while swaying its leafy body.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4b60e5f6.jpg", + "video_length": 1.0, + "job_id": "4b60e5f6", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4b60e5f6.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:09:05.567346+00:00" + }, + { + "prompt": "The cute pink character dances happily, waving one arm and bouncing with joy.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_210239e4.jpg", + "video_length": 1.0, + "job_id": "210239e4", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_210239e4.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:13:21.705831+00:00" + }, + { + "prompt": "The cartoon dog raises its paw and throws a punch with energetic motion.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_135eea25.jpg", + "video_length": 1.0, + "job_id": "135eea25", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_135eea25.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:16:47.028541+00:00" + }, + { + "prompt": "The cute character dances joyfully, with lively arm movements, swirling happily on one foot.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b439bb03.jpg", + "video_length": 1.0, + "job_id": "b439bb03", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_b439bb03.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:21:10.266348+00:00" + }, + { + "prompt": "The adorable cartoon puppy walks forward confidently, wiggling its tail and flashing a happy smile, while making a peace sign with its paw.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_22d46a1b.jpg", + "video_length": 1.0, + "job_id": "22d46a1b", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_22d46a1b.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:28:12.000348+00:00" + }, + { + "prompt": "The girl dances happily, waving her hand with a peace sign, bouncing joyfully on her feet.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_602d6b9a.jpg", + "video_length": 1.0, + "job_id": "602d6b9a", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_602d6b9a.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:32:33.273640+00:00" + }, + { + "prompt": "The girl dances energetically, with lively, expressive movements, embodying joy and rhythm.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5edf87a5.jpg", + "video_length": 1.0, + "job_id": "5edf87a5", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_5edf87a5.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:39:20.936148+00:00" + }, + { + "prompt": "The dragon exhales fire passionately, with flames bursting from its mouth as it flies through the air.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_816d4cfe.jpg", + "video_length": 1.0, + "job_id": "816d4cfe", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_816d4cfe.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:45:47.506338+00:00" + }, + { + "prompt": "The cute blob character dances joyfully, with arms raised and moving rhythmically, full of cheerful energy.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ca952593.jpg", + "video_length": 1.0, + "job_id": "ca952593", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ca952593.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:51:13.755579+00:00" + }, + { + "prompt": "The dragons breathe fire, with flames flickering brightly from their mouths as they stand confidently.", + "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e78723c5.jpg", + "video_length": 1.0, + "job_id": "e78723c5", + "seed": -1, + "use_teacache": true, + "gpu_memory_preservation": 6.0, + "steps": 25, + "cfg": 1.0, + "gs": 10.0, + "rs": 0.0, + "status": "completed", + "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e78723c5.jpg", + "mp4_crf": 16.0, + "progress": 100, + "progress_step": 25, + "progress_total": 25, + "progress_info": "Finished", + "lora_scale": 1.0, + "lora_path": null, + "updated_at": "2025-04-26T08:56:43.794623+00:00" + } +] \ No newline at end of file diff --git a/quick_prompts.json b/quick_prompts.json index 7e0a18d5..777c4a50 100644 --- a/quick_prompts.json +++ b/quick_prompts.json @@ -6,5 +6,9 @@ { "prompt": "A character doing some simple body movements.", "length": 5.0 + }, + { + "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts.\nShe starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up.\nbreast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", + "length": 5 } ] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index e7dd8ecb..7839def1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -17,7 +17,8 @@ peft fastapi uvicorn[standard] +watchdog # Testing pytest -pytest-mock +pytest-mock \ No newline at end of file From 626c496e9f90c8eec530a93d053f67c22afb759f Mon Sep 17 00:00:00 2001 From: hndrr Date: Sun, 27 Apr 2025 14:30:37 +0900 Subject: [PATCH 02/11] Remove inappropriate prompt related to nudity from quick_prompts.json --- job_queue.json | 5523 +------------------------------------------- quick_prompts.json | 4 - 2 files changed, 1 insertion(+), 5526 deletions(-) diff --git a/job_queue.json b/job_queue.json index d2fc8665..0637a088 100644 --- a/job_queue.json +++ b/job_queue.json @@ -1,5522 +1 @@ -[ - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d5f6eb1e.png", - "video_length": 1.0, - "job_id": "d5f6eb1e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 20, - "cfg": 7.0, - "gs": 1.0, - "rs": 1.0, - "status": "processing", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 42.5, - "progress_step": 5, - "progress_total": 20, - "progress_info": "Sampling section 1/1 - Step 5/20", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b7a2ccbc.png", - "video_length": 1.0, - "job_id": "b7a2ccbc", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 20, - "cfg": 7.0, - "gs": 1.0, - "rs": 1.0, - "status": "cancelled", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 39.0, - "progress_step": 4, - "progress_total": 20, - "progress_info": "Sampling section 1/1 - Step 4/20", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9d6b3eb1.png", - "video_length": 1.0, - "job_id": "9d6b3eb1", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2aee5e46.png", - "video_length": 2.0, - "job_id": "2aee5e46", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8e696408.png", - "video_length": 2.0, - "job_id": "8e696408", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "cancelled", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 44.6, - "progress_step": 14, - "progress_total": 25, - "progress_info": "Sampling section 1/2 - Step 14/25", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_de8531d9.png", - "video_length": 2.0, - "job_id": "de8531d9", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2a5a6f9c.png", - "video_length": 2.0, - "job_id": "2a5a6f9c", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_320b3f4a.png", - "video_length": 5.0, - "job_id": "320b3f4a", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2fd058f9.png", - "video_length": 5.0, - "job_id": "2fd058f9", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5ac13392.png", - "video_length": 5.0, - "job_id": "5ac13392", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2a271c1e.png", - "video_length": 5.0, - "job_id": "2a271c1e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "A woman Ahegao", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0aae29ea.png", - "video_length": 1.0, - "job_id": "0aae29ea", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "ahegao_hunyuan_video_v1_e18.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "A woman Ahegao", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_fd7bdb81.png", - "video_length": 1.0, - "job_id": "fd7bdb81", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "ahegao_hunyuan_video_v1_e18.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "A woman Ahegao", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3f14eee9.png", - "video_length": 1.0, - "job_id": "3f14eee9", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "ahegao_hunyuan_video_v1_e18.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "A woman Ahegao", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8f54a69c.png", - "video_length": 1.0, - "job_id": "8f54a69c", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "ahegao_hunyuan_video_v1_e18.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_193fc0f2.png", - "video_length": 1.0, - "job_id": "193fc0f2", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 2.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dd561932.png", - "video_length": 1.0, - "job_id": "dd561932", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_acbc2208.png", - "video_length": 1.0, - "job_id": "acbc2208", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 0.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2cce0e9b.png", - "video_length": 1.0, - "job_id": "2cce0e9b", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f36e577d.png", - "video_length": 1.0, - "job_id": "f36e577d", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b456e8ef.png", - "video_length": 1.0, - "job_id": "b456e8ef", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6003824c.png", - "video_length": 1.0, - "job_id": "6003824c", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_edd7c3ff.png", - "video_length": 1.0, - "job_id": "edd7c3ff", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f2aeb330.png", - "video_length": 1.0, - "job_id": "f2aeb330", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 0.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9ea7c486.png", - "video_length": 1.0, - "job_id": "9ea7c486", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_239e55d5.png", - "video_length": 1.0, - "job_id": "239e55d5", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_69b5ce76.png", - "video_length": 1.0, - "job_id": "69b5ce76", - "seed": 33333, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 2.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_fdca9f62.png", - "video_length": 2.0, - "job_id": "fdca9f62", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "tittydrop_v1.1.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5bc88b01.png", - "video_length": 2.0, - "job_id": "5bc88b01", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "failed - RuntimeError", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 25.0, - "progress_step": 0, - "progress_total": 25, - "progress_info": "Failed: RuntimeError", - "lora_scale": 1.0, - "lora_path": "tittydrop_v1.1.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0b5ffe2b.png", - "video_length": 2.0, - "job_id": "0b5ffe2b", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "failed - RuntimeError", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 25.0, - "progress_step": 0, - "progress_total": 25, - "progress_info": "Failed: RuntimeError", - "lora_scale": 1.0, - "lora_path": "tittydrop_v1.1.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_09d2b149.png", - "video_length": 2.0, - "job_id": "09d2b149", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "failed - RuntimeError", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 25.0, - "progress_step": 0, - "progress_total": 25, - "progress_info": "Failed: RuntimeError", - "lora_scale": 1.0, - "lora_path": "tittydrop_v1.1.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1797cc8f.png", - "video_length": 2.0, - "job_id": "1797cc8f", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "processing", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 25.0, - "progress_step": 0, - "progress_total": 25, - "progress_info": "Sampling section 1/2", - "lora_scale": 1.0, - "lora_path": "tittydrop_v1.1.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_54cea4b1.png", - "video_length": 2.0, - "job_id": "54cea4b1", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "processing", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 39.0, - "progress_step": 10, - "progress_total": 25, - "progress_info": "Sampling section 1/2 - Step 10/25", - "lora_scale": 1.0, - "lora_path": "tittydrop_v1.1.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d78a6e90.png", - "video_length": 2.0, - "job_id": "d78a6e90", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "processing", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 0, - "progress_step": 0, - "progress_total": 25, - "progress_info": "Starting ...", - "lora_scale": 1.0, - "lora_path": "tittydrop_v1.1.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d69ac499.png", - "video_length": 2.0, - "job_id": "d69ac499", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "processing", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 50.2, - "progress_step": 18, - "progress_total": 25, - "progress_info": "Sampling section 1/2 - Step 18/25", - "lora_scale": 1.0, - "lora_path": "tittydrop_v1.1.safetensors", - "updated_at": "2025-04-23T17:46:15.367530+00:00" - }, - { - "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5a6d9739.png", - "video_length": 2.0, - "job_id": "5a6d9739", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:53:55.213457+00:00" - }, - { - "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d5a5bbc4.png", - "video_length": 2.0, - "job_id": "d5a5bbc4", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T17:58:11.212047+00:00" - }, - { - "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c8531c1a.png", - "video_length": 2.0, - "job_id": "c8531c1a", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T18:02:04.632430+00:00" - }, - { - "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_bc7ec1d9.png", - "video_length": 2.0, - "job_id": "bc7ec1d9", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T18:06:05.740034+00:00" - }, - { - "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b7722620.png", - "video_length": 2.0, - "job_id": "b7722620", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T18:10:13.320239+00:00" - }, - { - "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_93789e20.png", - "video_length": 2.0, - "job_id": "93789e20", - "seed": -3317, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T18:41:43.191876+00:00" - }, - { - "prompt": "Accepts an image upload and text prompt to generate a video. Adds the job to the queue and returns the job ID immediately.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b5c7d7a8.png", - "video_length": 2.0, - "job_id": "b5c7d7a8", - "seed": 3317, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "cancelled", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 0.0, - "progress_step": 0, - "progress_total": 0, - "progress_info": "", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T18:40:23.350978+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b61b65d9.png", - "video_length": 2.0, - "job_id": "b61b65d9", - "seed": 3317, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T18:45:48.086670+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1119f8da.png", - "video_length": 2.0, - "job_id": "1119f8da", - "seed": 3317, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T18:49:46.759765+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8286f993.png", - "video_length": 2.0, - "job_id": "8286f993", - "seed": 3317, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T18:53:56.389309+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_108a70c4.png", - "video_length": 2.0, - "job_id": "108a70c4", - "seed": 3317, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T18:58:33.840285+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_37c5ccbc.png", - "video_length": 2.0, - "job_id": "37c5ccbc", - "seed": 3317, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T19:02:50.073619+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7fe25b70.png", - "video_length": 2.0, - "job_id": "7fe25b70", - "seed": 3317, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T19:07:19.235907+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_26bd875e.png", - "video_length": 2.0, - "job_id": "26bd875e", - "seed": 3317, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 2.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T19:11:34.705593+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f502b58a.png", - "video_length": 2.0, - "job_id": "f502b58a", - "seed": 3316, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 2.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T19:16:00.116608+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6d7e05e6.png", - "video_length": 2.0, - "job_id": "6d7e05e6", - "seed": 3316, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 2.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T19:20:14.630250+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2d4cdc8a.png", - "video_length": 2.0, - "job_id": "2d4cdc8a", - "seed": 3316, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 0.8, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T19:24:29.654979+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d5ad22fa.png", - "video_length": 2.0, - "job_id": "d5ad22fa", - "seed": 3315, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 0.8, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T19:28:48.313094+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c2abc8d7.png", - "video_length": 5.0, - "job_id": "c2abc8d7", - "seed": 3315, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 0.8, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-23T19:37:02.919806+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_44cf0478.png", - "video_length": 1.0, - "job_id": "44cf0478", - "seed": 3315, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 0.8, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-24T00:46:03.199127+00:00" - }, - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5883b044.jpg", - "video_length": 1.0, - "job_id": "5883b044", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "handbra-ds3-epoch105.safetensors", - "updated_at": "2025-04-24T01:13:30.568838+00:00" - }, - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_72692b8a.jpg", - "video_length": 1.0, - "job_id": "72692b8a", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "bouncing_breasts_hunyuan.safetensors", - "updated_at": "2025-04-24T02:17:45.395444+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_88842a8b.jpg", - "video_length": 5.0, - "job_id": "88842a8b", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-24T02:24:34.710596+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_006be731.jpg", - "video_length": 4.0, - "job_id": "006be731", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-24T02:29:31.315523+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1dde064b.jpg", - "video_length": 4.0, - "job_id": "1dde064b", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-24T02:34:18.556449+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6e704513.jpg", - "video_length": 4.0, - "job_id": "6e704513", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-24T02:39:12.817211+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_07b5a078.jpg", - "video_length": 4.0, - "job_id": "07b5a078", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-24T02:44:30.304068+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_88a78617.jpg", - "video_length": 4.0, - "job_id": "88a78617", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-24T02:49:31.908584+00:00" - }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts. She starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up. breast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_600a8098.jpg", - "video_length": 4.0, - "job_id": "600a8098", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-24T02:54:30.182240+00:00" - }, - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b2e721bf.jpg", - "video_length": 5.0, - "job_id": "b2e721bf", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T07:35:04.016172+00:00" - }, - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b9fe74c3.jpg", - "video_length": 5.0, - "job_id": "b9fe74c3", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T07:40:52.556730+00:00" - }, - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_92f7d76e.jpg", - "video_length": 5.0, - "job_id": "92f7d76e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T07:46:33.043157+00:00" - }, - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3f2af63a.jpg", - "video_length": 5.0, - "job_id": "3f2af63a", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T07:52:12.968593+00:00" - }, - { - "prompt": "wave one's hand", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7c6af4f1.jpg", - "video_length": 5.0, - "job_id": "7c6af4f1", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T08:21:15.993951+00:00" - }, - { - "prompt": "wave one's hand", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2c5fdb22.jpg", - "video_length": 1.0, - "job_id": "2c5fdb22", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T08:22:52.086713+00:00" - }, - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ef9636f1.jpg", - "video_length": 1.0, - "job_id": "ef9636f1", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T08:25:03.909263+00:00" - }, - { - "prompt": "eye wink", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ca26d024.jpg", - "video_length": 1.0, - "job_id": "ca26d024", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T08:32:21.636122+00:00" - }, - { - "prompt": "Smile and waving", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_540f229d.jpg", - "video_length": 2.0, - "job_id": "540f229d", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T08:48:38.391942+00:00" - }, - { - "prompt": "smile and waving", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_219f4f7f.jpg", - "video_length": 1.0, - "job_id": "219f4f7f", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T08:50:16.043580+00:00" - }, - { - "prompt": "A character dancing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_64d92be0.jpg", - "video_length": 2.0, - "job_id": "64d92be0", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "", - "updated_at": "2025-04-24T09:06:20.762659+00:00" - }, - { - "prompt": "A character dancing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1dfe8bbe.jpg", - "video_length": 3.0, - "job_id": "1dfe8bbe", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "", - "updated_at": "2025-04-24T09:09:22.986581+00:00" - }, - { - "prompt": "A character dancing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_318688ef.jpg", - "video_length": 3.0, - "job_id": "318688ef", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "breast_drop_v2_170.safetensors", - "updated_at": "2025-04-24T09:17:01.016551+00:00" - }, - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_34d74c55.jpg", - "video_length": 2.0, - "job_id": "34d74c55", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "failed - RuntimeError", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 25, - "progress_step": 0, - "progress_total": 25, - "progress_info": "Failed: RuntimeError", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T10:55:09.457556+00:00" - }, - { - "prompt": "A character doing some simple body movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_59c7a169.jpg", - "video_length": 2.0, - "job_id": "59c7a169", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "failed - RuntimeError", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 25, - "progress_step": 0, - "progress_total": 25, - "progress_info": "Failed: RuntimeError", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T11:06:53.722483+00:00" - }, - { - "prompt": "dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_35da387b.jpg", - "video_length": 2.0, - "job_id": "35da387b", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "failed - RuntimeError", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 25, - "progress_step": 0, - "progress_total": 25, - "progress_info": "Failed: RuntimeError", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T11:52:30.303585+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_72db3c13.jpg", - "video_length": 2.0, - "job_id": "72db3c13", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "failed - RuntimeError", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 25, - "progress_step": 0, - "progress_total": 25, - "progress_info": "Failed: RuntimeError", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T12:33:05.163013+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2f8a068d.jpg", - "video_length": 2.0, - "job_id": "2f8a068d", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "failed - RuntimeError", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 25, - "progress_step": 0, - "progress_total": 25, - "progress_info": "Failed: RuntimeError", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T12:44:59.423940+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f8a26a84.jpg", - "video_length": 2.0, - "job_id": "f8a26a84", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T12:55:13.378676+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f9674c0c.jpg", - "video_length": 2.0, - "job_id": "f9674c0c", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T12:58:21.437393+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3803c3fc.jpg", - "video_length": 2.0, - "job_id": "3803c3fc", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:01:14.226643+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_fb8e2532.jpg", - "video_length": 2.0, - "job_id": "fb8e2532", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:08:16.790325+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_72996a4e.jpg", - "video_length": 2.0, - "job_id": "72996a4e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:16:57.733792+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1d5eba58.jpg", - "video_length": 2.0, - "job_id": "1d5eba58", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:22:15.524281+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_08854c01.jpg", - "video_length": 2.0, - "job_id": "08854c01", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:25:04.991756+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_cc5828bd.jpg", - "video_length": 2.0, - "job_id": "cc5828bd", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:27:55.140183+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c30bed4d.jpg", - "video_length": 2.0, - "job_id": "c30bed4d", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:30:48.403910+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ef9e9257.jpg", - "video_length": 2.0, - "job_id": "ef9e9257", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:33:38.483274+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ff20163e.jpg", - "video_length": 2.0, - "job_id": "ff20163e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:36:28.775580+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e07df2d2.jpg", - "video_length": 2.0, - "job_id": "e07df2d2", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:39:19.104972+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_922db79e.jpg", - "video_length": 2.0, - "job_id": "922db79e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:42:10.394745+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c4d916b2.jpg", - "video_length": 1.0, - "job_id": "c4d916b2", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:45:33.884319+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5e9fd15e.jpg", - "video_length": 1.0, - "job_id": "5e9fd15e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:47:58.483324+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_545c7d55.jpg", - "video_length": 1.0, - "job_id": "545c7d55", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T13:52:25.770124+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_79ecd580.jpg", - "video_length": 1.0, - "job_id": "79ecd580", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T14:11:07.584110+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d2b53b10.jpg", - "video_length": 2.0, - "job_id": "d2b53b10", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T14:25:03.408051+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_94d3f0ff.jpg", - "video_length": 1.0, - "job_id": "94d3f0ff", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T14:31:04.173829+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3a88860e.jpg", - "video_length": 1.0, - "job_id": "3a88860e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T14:43:32.646940+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_49e9a771.jpg", - "video_length": 1.0, - "job_id": "49e9a771", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T14:54:10.783115+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0232477e.jpg", - "video_length": 1.0, - "job_id": "0232477e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T14:56:30.809204+00:00" - }, - { - "prompt": "action kick punch", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_193c8909.jpg", - "video_length": 1.0, - "job_id": "193c8909", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T14:58:48.281989+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9fc7b0f0.jpg", - "video_length": 2.0, - "job_id": "9fc7b0f0", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T15:09:52.095968+00:00" - }, - { - "prompt": "jump, punch, kick", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a9a30974.jpg", - "video_length": 2.0, - "job_id": "a9a30974", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T15:13:13.192324+00:00" - }, - { - "prompt": "jump, punch, kick", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0d0c25be.jpg", - "video_length": 2.0, - "job_id": "0d0c25be", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T15:16:26.396889+00:00" - }, - { - "prompt": "take off her clothes, naked,", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8097580f.jpg", - "video_length": 2.0, - "job_id": "8097580f", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T15:28:34.469384+00:00" - }, - { - "prompt": "take off her clothes, naked,", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c800f1d5.jpg", - "video_length": 2.0, - "job_id": "c800f1d5", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T15:31:35.775719+00:00" - }, - { - "prompt": "take off her clothes, naked,", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_33d9a73d.jpg", - "video_length": 3.0, - "job_id": "33d9a73d", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T15:34:45.581414+00:00" - }, - { - "prompt": "take off her clothes, naked,", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1bc99a4d.jpg", - "video_length": 3.0, - "job_id": "1bc99a4d", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T15:40:12.316725+00:00" - }, - { - "prompt": "dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_47b48675.jpg", - "video_length": 3.0, - "job_id": "47b48675", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T15:49:58.436522+00:00" - }, - { - "prompt": "dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b157c304.jpg", - "video_length": 3.0, - "job_id": "b157c304", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T16:06:03.286380+00:00" - }, - { - "prompt": "dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c937d5bb.jpg", - "video_length": 3.0, - "job_id": "c937d5bb", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-24T16:09:09.175670+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_62379a47.jpg", - "video_length": 2.0, - "job_id": "62379a47", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_62379a47.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T01:44:09.318652+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e36af6d6.jpg", - "video_length": 2.0, - "job_id": "e36af6d6", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e36af6d6.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T01:47:46.406873+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b76c381b.jpg", - "video_length": 2.0, - "job_id": "b76c381b", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_b76c381b.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T01:50:17.010977+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d832846c.jpg", - "video_length": 2.0, - "job_id": "d832846c", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_d832846c.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T01:54:07.735727+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e41e5ef6.jpg", - "video_length": 2.0, - "job_id": "e41e5ef6", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e41e5ef6.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T01:58:17.634018+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_33586767.jpg", - "video_length": 1.0, - "job_id": "33586767", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_33586767.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T02:03:28.249651+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c3e98312.jpg", - "video_length": 2.0, - "job_id": "c3e98312", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_c3e98312.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T02:16:03.212333+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0aad35d6.jpg", - "video_length": 1.0, - "job_id": "0aad35d6", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0aad35d6.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T02:17:18.918958+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d0358124.jpg", - "video_length": 2.0, - "job_id": "d0358124", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_d0358124.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T02:46:05.873585+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c9ef1122.jpg", - "video_length": 2.0, - "job_id": "c9ef1122", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_c9ef1122.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T02:48:39.528034+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c2bc91b6.jpg", - "video_length": 2.0, - "job_id": "c2bc91b6", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_c2bc91b6.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T02:53:57.176418+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6ac41e56.jpg", - "video_length": 2.0, - "job_id": "6ac41e56", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6ac41e56.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T03:03:30.042700+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7de79a7c.jpg", - "video_length": 2.0, - "job_id": "7de79a7c", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7de79a7c.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T03:05:56.021154+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d90472e1.jpg", - "video_length": 2.0, - "job_id": "d90472e1", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_d90472e1.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T03:11:37.288013+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_32c768e6.jpg", - "video_length": 2.0, - "job_id": "32c768e6", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_32c768e6.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T03:16:29.662350+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_232d54ed.jpg", - "video_length": 2.0, - "job_id": "232d54ed", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_232d54ed.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T03:29:27.416859+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3aa32aab.jpg", - "video_length": 2.0, - "job_id": "3aa32aab", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_3aa32aab.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T03:31:54.804829+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_bcc7a45c.jpg", - "video_length": 2.0, - "job_id": "bcc7a45c", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_bcc7a45c.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T03:35:40.541359+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0e47c984.jpg", - "video_length": 2.0, - "job_id": "0e47c984", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0e47c984.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T03:38:22.237188+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9f6c4e20.jpg", - "video_length": 2.0, - "job_id": "9f6c4e20", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9f6c4e20.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T03:47:15.359088+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6b3959af.jpg", - "video_length": 2.0, - "job_id": "6b3959af", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6b3959af.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T03:56:31.384680+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_fe2cb76a.jpg", - "video_length": 2.0, - "job_id": "fe2cb76a", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_fe2cb76a.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T04:01:43.411859+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7844d8ca.jpg", - "video_length": 1.0, - "job_id": "7844d8ca", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7844d8ca.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T04:09:09.708193+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9c81fb2b.jpg", - "video_length": 1.0, - "job_id": "9c81fb2b", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9c81fb2b.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T04:27:40.530787+00:00" - }, - { - "prompt": "The girl dances lively, with joyful arm and leg movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4dee2ed3.jpg", - "video_length": 1.0, - "job_id": "4dee2ed3", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4dee2ed3.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T04:52:08.791070+00:00" - }, - { - "prompt": "The girl sings passionately, with her mouth open wide and her eyes expressive, as she gestures with one hand on her hip.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7ea7c7f5.jpg", - "video_length": 1.0, - "job_id": "7ea7c7f5", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7ea7c7f5.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T04:53:23.376822+00:00" - }, - { - "prompt": "The girl yawns sleepily, stretching her arms and swaying gently as she tries to wake up.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1e4ea95e.jpg", - "video_length": 1.0, - "job_id": "1e4ea95e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_1e4ea95e.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T04:54:36.625047+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_05917df2.jpg", - "video_length": 2.0, - "job_id": "05917df2", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_05917df2.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T05:14:24.082331+00:00" - }, - { - "prompt": "The cute cartoon bear smiles and dances happily, with lively arm movements and cheerful energy.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ee4bdef3.jpg", - "video_length": 2.0, - "job_id": "ee4bdef3", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ee4bdef3.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T05:16:45.796271+00:00" - }, - { - "prompt": "The cartoon character smiles brightly and dances joyfully, with energetic movements and lively steps.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a67a7c84.jpg", - "video_length": 2.0, - "job_id": "a67a7c84", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_a67a7c84.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T05:26:37.020696+00:00" - }, - { - "prompt": "The girl smiles warmly and dances gently, her movements graceful and full of joy.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_24eb106f.jpg", - "video_length": 1.0, - "job_id": "24eb106f", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_24eb106f.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T07:04:52.121880+00:00" - }, - { - "prompt": "The girl smiles warmly and dances gently, her movements graceful and full of joy.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dcb8d4a6.jpg", - "video_length": 1.0, - "job_id": "dcb8d4a6", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_dcb8d4a6.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T07:08:05.478690+00:00" - }, - { - "prompt": "The happy, smiling rectangle character dances playfully, moving its arms and body with lively, cheerful motions.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4acd8266.jpg", - "video_length": 2.0, - "job_id": "4acd8266", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4acd8266.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T07:33:04.867159+00:00" - }, - { - "prompt": "The cute cartoon piece of bread happily dances with two peace signs, showcasing a cheerful and lively motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0ab0c2e9.jpg", - "video_length": 2.0, - "job_id": "0ab0c2e9", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0ab0c2e9.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T07:38:01.484259+00:00" - }, - { - "prompt": "The cute cartoon piece of bread happily dances with two peace signs, showcasing a cheerful and lively motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dbc3aa41.jpg", - "video_length": 2.0, - "job_id": "dbc3aa41", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_dbc3aa41.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T07:40:40.462196+00:00" - }, - { - "prompt": "The cute character smiles brightly and dances happily, waving its hand energetically.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a3df7252.jpg", - "video_length": 1.0, - "job_id": "a3df7252", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_a3df7252.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T13:58:15.282088+00:00" - }, - { - "prompt": "The robot dances joyfully, waving its hand energetically and smiling brightly.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_56960830.jpg", - "video_length": 1.0, - "job_id": "56960830", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_56960830.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T14:01:05.255987+00:00" - }, - { - "prompt": "\u5973\u306e\u5b50\u304c\u6a2a\u56de\u8ee2", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6e85a80e.jpg", - "video_length": 3.0, - "job_id": "6e85a80e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6e85a80e.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T14:04:20.729333+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_263796a5.jpg", - "video_length": 4.0, - "job_id": "263796a5", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_263796a5.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T14:15:36.701736+00:00" - }, - { - "prompt": "The plush bunny trembles violently, as dark red blood oozes and drips from its head and limbs, creating a chilling, horror-filled scene.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8d55073f.jpg", - "video_length": 4.0, - "job_id": "8d55073f", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_8d55073f.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T14:26:50.978785+00:00" - }, - { - "prompt": "The plush bunny shakes violently, with blood splattering and dripping from its head and limbs, creating a disturbing, horror-filled scene.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4c17699a.jpg", - "video_length": 4.0, - "job_id": "4c17699a", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4c17699a.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T14:33:36.098525+00:00" - }, - { - "prompt": "The character, with a rabbit mask, stands confidently, wielding a sword in one hand, and gestures with the other hand as if preparing for action.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_29fa4aca.jpg", - "video_length": 2.0, - "job_id": "29fa4aca", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_29fa4aca.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T14:40:22.671188+00:00" - }, - { - "prompt": "The character with a rabbit mask dances aggressively, swinging a sword with dynamic movements while gesturing fiercely with the other hand.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_31e43f00.jpg", - "video_length": 2.0, - "job_id": "31e43f00", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_31e43f00.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T16:01:58.444283+00:00" - }, - { - "prompt": "The person smiles confidently, then begins to dance lively, with smooth arm movements and energetic footwork.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_bf401822.jpg", - "video_length": 2.0, - "job_id": "bf401822", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_bf401822.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-25T16:52:43.407479+00:00" - }, - { - "prompt": "A character doing some simple body movements. kxsr", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f732c235.jpg", - "video_length": 3.0, - "job_id": "f732c235", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_f732c235.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": "kxsr_orbitcam_v2.safetensors", - "updated_at": "2025-04-25T18:34:34.948198+00:00" - }, - { - "prompt": "The cute animated mouse smiles brightly and dances joyfully, with lively and playful movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ac8a2874.jpg", - "video_length": 1.0, - "job_id": "ac8a2874", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ac8a2874.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T02:42:02.669122+00:00" - }, - { - "prompt": "The cute animated mouse smiles brightly and dances joyfully, with lively and playful movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_401ccfca.jpg", - "video_length": 3.0, - "job_id": "401ccfca", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_401ccfca.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:01:32.511174+00:00" - }, - { - "prompt": "The character runs energetically, then transitions into a lively dance with joyful movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0ef68668.jpg", - "video_length": 3.0, - "job_id": "0ef68668", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0ef68668.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:03:44.316897+00:00" - }, - { - "prompt": "The cute bunny character smiles brightly and dances joyfully, with lively arm movements and cheerful steps.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_53cee8b1.jpg", - "video_length": 2.0, - "job_id": "53cee8b1", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_53cee8b1.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:15:18.475349+00:00" - }, - { - "prompt": "smile and dancing", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6f3b980b.jpg", - "video_length": 2.0, - "job_id": "6f3b980b", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6f3b980b.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:17:36.200006+00:00" - }, - { - "prompt": "The cute bunny character smiles brightly and dances joyfully, with lively arm movements and cheerful steps.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6e2c9d2e.jpg", - "video_length": 2.0, - "job_id": "6e2c9d2e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6e2c9d2e.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:19:57.436930+00:00" - }, - { - "prompt": "The cute pink character smiles brightly and dances happily, swaying rhythmically with cheerful movement.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f98c96b0.jpg", - "video_length": 2.0, - "job_id": "f98c96b0", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_f98c96b0.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:23:14.514379+00:00" - }, - { - "prompt": "A man adjusts his tie confidently, then slowly turns and walks forward with a purposeful stride.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d50c99a0.jpg", - "video_length": 2.0, - "job_id": "d50c99a0", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_d50c99a0.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:25:43.816374+00:00" - }, - { - "prompt": "The man jumps joyfully, waving his arms enthusiastically with a big smile on his face.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6141285e.jpg", - "video_length": 2.0, - "job_id": "6141285e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6141285e.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:30:53.123455+00:00" - }, - { - "prompt": "The cute character smiles brightly and dances joyfully, moving energetically with happy gestures.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2f8f30e3.jpg", - "video_length": 2.0, - "job_id": "2f8f30e3", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_2f8f30e3.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:42:35.416636+00:00" - }, - { - "prompt": "The girl jumps joyfully, waving her hands and flashing peace signs, full of energetic movement.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8b296710.jpg", - "video_length": 2.0, - "job_id": "8b296710", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_8b296710.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:47:46.170840+00:00" - }, - { - "prompt": "The robot dances energetically, with lively arm and leg movements, full of vibrant motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_aaa943b6.jpg", - "video_length": 2.0, - "job_id": "aaa943b6", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_aaa943b6.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:53:31.284482+00:00" - }, - { - "prompt": "The character dances happily, with lively and energetic movements, flashing a peace sign with one hand.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_2da79eed.jpg", - "video_length": 2.0, - "job_id": "2da79eed", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_2da79eed.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T03:59:08.867817+00:00" - }, - { - "prompt": "A cute animated plant character dances joyfully, with energetic steps and lively movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a879df6e.jpg", - "video_length": 2.0, - "job_id": "a879df6e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_a879df6e.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T04:05:31.765621+00:00" - }, - { - "prompt": "The cheerful character with a peach-shaped head and green body jumps energetically, with arms raised and legs bent, capturing a lively leap.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ad3939cf.jpg", - "video_length": 2.0, - "job_id": "ad3939cf", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ad3939cf.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T04:10:36.305106+00:00" - }, - { - "prompt": "The cute character dances joyfully, with lively arm and leg movements, as if celebrating happily.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_c196d27f.jpg", - "video_length": 2.0, - "job_id": "c196d27f", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_c196d27f.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T04:14:03.526868+00:00" - }, - { - "prompt": "The cartoon character performs a middle kick, lifting one leg high and striking forward with energetic motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_270d827e.jpg", - "video_length": 2.0, - "job_id": "270d827e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_270d827e.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T04:17:19.167723+00:00" - }, - { - "prompt": "The robot dances energetically, performing lively, rhythmic movements with its arms and legs.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_18f5ce33.jpg", - "video_length": 2.0, - "job_id": "18f5ce33", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_18f5ce33.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T04:22:17.120217+00:00" - }, - { - "prompt": "The anthropomorphic fox character raises its fist in a powerful punch, with a confident and intense expression, while crossing its arms in a bold stance.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_79c245a1.jpg", - "video_length": 2.0, - "job_id": "79c245a1", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_79c245a1.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T04:28:12.909262+00:00" - }, - { - "prompt": "dance moves like jaguar", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_bfa9ee68.jpg", - "video_length": 2.0, - "job_id": "bfa9ee68", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_bfa9ee68.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T04:35:07.694907+00:00" - }, - { - "prompt": "The flower character dances dynamically, mimicking a jaguar's sleek and powerful movements with sharp, prowling steps and agile, fluid motions.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e49cdfaa.jpg", - "video_length": 1.0, - "job_id": "e49cdfaa", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e49cdfaa.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T04:37:56.538159+00:00" - }, - { - "prompt": "The emoji character dances happily, moving its arms and body with lively, joyful motions.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9dbeaa76.jpg", - "video_length": 1.0, - "job_id": "9dbeaa76", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9dbeaa76.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T04:46:56.094679+00:00" - }, - { - "prompt": "The plush toy dances playfully, with lively and animated movements, bringing it to life.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dbbbaac5.jpg", - "video_length": 1.0, - "job_id": "dbbbaac5", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_dbbbaac5.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T04:51:26.612334+00:00" - }, - { - "prompt": "The creature glares fiercely, stomping aggressively with clenched fists, ready to fight.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_80d80b95.jpg", - "video_length": 1.0, - "job_id": "80d80b95", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_80d80b95.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T04:58:15.940405+00:00" - }, - { - "prompt": "The girl dances energetically, with lively arm movements, smiling brightly and swaying her hips.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_98c94bd9.jpg", - "video_length": 1.0, - "job_id": "98c94bd9", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_98c94bd9.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:01:59.867099+00:00" - }, - { - "prompt": "The figure passionately fights, with fists clenched and arms swinging aggressively, showing intense movement and determination.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_448f62fd.jpg", - "video_length": 1.0, - "job_id": "448f62fd", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_448f62fd.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:05:51.417770+00:00" - }, - { - "prompt": "The dragon character delivers a powerful punch, with its arm extended forward in a dynamic, aggressive motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_41ec4b35.jpg", - "video_length": 1.0, - "job_id": "41ec4b35", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_41ec4b35.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:09:06.023572+00:00" - }, - { - "prompt": "The chibi character dances joyfully, with arms outstretched and a bright smile, moving energetically against a plain background.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7b9f7a93.jpg", - "video_length": 1.0, - "job_id": "7b9f7a93", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7b9f7a93.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:13:42.811680+00:00" - }, - { - "prompt": "The figure dances energetically, with lively arm and leg movements, conveying a sense of joyful motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a5b2e9c1.jpg", - "video_length": 1.0, - "job_id": "a5b2e9c1", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_a5b2e9c1.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:22:02.319633+00:00" - }, - { - "prompt": "The animated pear character dances joyfully, with lively and energetic movements, showcasing a cheerful and playful vibe.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_fb6a503e.jpg", - "video_length": 1.0, - "job_id": "fb6a503e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_fb6a503e.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:30:20.487268+00:00" - }, - { - "prompt": "The cute yellow hamster dances happily, flashing a peace sign with one paw and smiling brightly.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4b3cc860.jpg", - "video_length": 1.0, - "job_id": "4b3cc860", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4b3cc860.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:33:41.393475+00:00" - }, - { - "prompt": "The plush fox doll dances playfully, bouncing and swaying with joyful energy.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_020a9208.jpg", - "video_length": 1.0, - "job_id": "020a9208", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_020a9208.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:39:43.012413+00:00" - }, - { - "prompt": "The cute cartoon dog dances playfully, with lively movements, swaying its body and wagging its tail.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_cd4db083.jpg", - "video_length": 1.0, - "job_id": "cd4db083", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_cd4db083.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:42:38.559898+00:00" - }, - { - "prompt": "dance", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_07f2d622.jpg", - "video_length": 1.0, - "job_id": "07f2d622", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_07f2d622.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:46:59.467273+00:00" - }, - { - "prompt": "The girl dances happily, with energetic and lively movements, as if she is joyfully bouncing and twirling.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0f3bf4c6.jpg", - "video_length": 1.0, - "job_id": "0f3bf4c6", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0f3bf4c6.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:49:07.481523+00:00" - }, - { - "prompt": "The cute yellow chick dances shyly, swaying gently with a hesitant movement.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_07bc7782.jpg", - "video_length": 1.0, - "job_id": "07bc7782", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_07bc7782.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:53:23.692101+00:00" - }, - { - "prompt": "The cartoon dragon dances energetically, lifting one leg high and swinging its arms with enthusiasm.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9c3426ed.jpg", - "video_length": 1.0, - "job_id": "9c3426ed", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9c3426ed.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T05:56:43.579858+00:00" - }, - { - "prompt": "The cute bird character flies joyfully with wings spread wide, soaring upward with a playful and energetic motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b69afc59.jpg", - "video_length": 1.0, - "job_id": "b69afc59", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_b69afc59.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:01:59.887988+00:00" - }, - { - "prompt": "The cute bird character flies joyfully with wings spread wide, soaring upward with a playful and energetic motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_380b54e5.jpg", - "video_length": 1.0, - "job_id": "380b54e5", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_380b54e5.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:04:01.557686+00:00" - }, - { - "prompt": "The figure dances joyfully, with energetic arm movements and a lively step, capturing a spirited dance motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_bac5ffca.jpg", - "video_length": 1.0, - "job_id": "bac5ffca", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_bac5ffca.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:12:53.054227+00:00" - }, - { - "prompt": "The anime girl dances happily, waving her hands and flashing peace signs with a cheerful expression.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_aa8957b5.jpg", - "video_length": 1.0, - "job_id": "aa8957b5", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_aa8957b5.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:15:02.588238+00:00" - }, - { - "prompt": "The girl dances gracefully, with lively movements, twirling her skirt and smiling brightly.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1bf4c03b.jpg", - "video_length": 1.0, - "job_id": "1bf4c03b", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_1bf4c03b.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:19:54.009062+00:00" - }, - { - "prompt": "A cute, cartoon character with an angry expression throws a powerful punch forward with one arm, body leaning into the motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1d6d4691.jpg", - "video_length": 1.0, - "job_id": "1d6d4691", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_1d6d4691.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:23:14.979424+00:00" - }, - { - "prompt": "The cartoon character throws a powerful punch forward with one arm, body leaning into the motion with an angry expression.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_30109ae5.jpg", - "video_length": 1.0, - "job_id": "30109ae5", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_30109ae5.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:24:42.610948+00:00" - }, - { - "prompt": "The dragon runs energetically, with dynamic motion and a sense of urgency.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_89e6b8d7.jpg", - "video_length": 1.0, - "job_id": "89e6b8d7", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_89e6b8d7.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:28:02.424473+00:00" - }, - { - "prompt": "The plush fox doll dances playfully, bouncing its arms and legs with joyful energy.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7c288275.jpg", - "video_length": 1.0, - "job_id": "7c288275", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7c288275.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:30:56.249411+00:00" - }, - { - "prompt": "The mascot dances energetically, with lively arm movements and a playful bounce, full of joyful motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_3507101e.jpg", - "video_length": 1.0, - "job_id": "3507101e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_3507101e.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:34:50.073444+00:00" - }, - { - "prompt": "The dragon spins around once, lifting one leg high and tossing its arm forward in a dynamic dance move.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dcbe4431.jpg", - "video_length": 1.0, - "job_id": "dcbe4431", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_dcbe4431.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:38:20.869993+00:00" - }, - { - "prompt": "A cute, animated plant character dances happily, moving its arms and legs with lively, rhythmic steps against a dark background.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ef7ebca0.jpg", - "video_length": 1.0, - "job_id": "ef7ebca0", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ef7ebca0.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:42:57.240606+00:00" - }, - { - "prompt": "The cute plant character dances joyfully, moving its arms and legs with lively, rhythmic steps against a dark background.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_1db362f5.jpg", - "video_length": 1.0, - "job_id": "1db362f5", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_1db362f5.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:45:23.346811+00:00" - }, - { - "prompt": "The woman jumps energetically with arms raised high, expressing excitement and joy.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_7aed6132.jpg", - "video_length": 1.0, - "job_id": "7aed6132", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_7aed6132.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:52:53.234294+00:00" - }, - { - "prompt": "The cute yellow character dances happily, waving its arms energetically and bouncing to the rhythm.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_038c1ea3.jpg", - "video_length": 1.0, - "job_id": "038c1ea3", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_038c1ea3.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T06:55:43.665578+00:00" - }, - { - "prompt": "The plush teddy bear walks forward confidently, with smooth, deliberate strides.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ce28f23b.jpg", - "video_length": 1.0, - "job_id": "ce28f23b", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ce28f23b.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:05:05.060400+00:00" - }, - { - "prompt": "The man walks forward confidently, with purposeful strides, as his arms swing naturally by his sides.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_166f089f.jpg", - "video_length": 1.0, - "job_id": "166f089f", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_166f089f.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:08:08.436168+00:00" - }, - { - "prompt": "The cartoon character dances joyfully, with lively arm movements and a playful jump.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_29bcbad9.jpg", - "video_length": 1.0, - "job_id": "29bcbad9", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_29bcbad9.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:11:37.910125+00:00" - }, - { - "prompt": "The cartoon dog dances joyfully, with lively and energetic movements, as if celebrating happily.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_f2e10efa.jpg", - "video_length": 1.0, - "job_id": "f2e10efa", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_f2e10efa.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:14:39.661044+00:00" - }, - { - "prompt": "The robot walks forward confidently, with smooth, deliberate movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_d9da63c6.jpg", - "video_length": 1.0, - "job_id": "d9da63c6", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_d9da63c6.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:18:33.176858+00:00" - }, - { - "prompt": "The robot dances energetically, with lively arm and leg movements, showing dynamic motion and rhythm.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9a968896.jpg", - "video_length": 1.0, - "job_id": "9a968896", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9a968896.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:21:04.130301+00:00" - }, - { - "prompt": "The young man clenches his fists and crosses his arms, with a fierce expression and furrowed brows, showing intense anger.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b8c8d4c7.jpg", - "video_length": 1.0, - "job_id": "b8c8d4c7", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_b8c8d4c7.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:23:44.827729+00:00" - }, - { - "prompt": "The blue cartoon creature angrily stomps and raises its fists, expressing frustration with energetic movement.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_66e3a5b6.jpg", - "video_length": 1.0, - "job_id": "66e3a5b6", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_66e3a5b6.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:24:57.365891+00:00" - }, - { - "prompt": "The cartoon leaf character is thinking, with one hand on its temple and a contemplative expression, as if deep in thought.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4a533cb7.jpg", - "video_length": 1.0, - "job_id": "4a533cb7", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4a533cb7.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:26:12.085305+00:00" - }, - { - "prompt": "The animated leaf character dances energetically, with lively arm and leg movements, exuding charm and fun.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e1755994.jpg", - "video_length": 1.0, - "job_id": "e1755994", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e1755994.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:27:56.019486+00:00" - }, - { - "prompt": "The girl walks forward with lively, natural strides, her arms swinging gently as she moves.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e41b5133.jpg", - "video_length": 1.0, - "job_id": "e41b5133", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e41b5133.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:31:22.577234+00:00" - }, - { - "prompt": "The dragon stomps energetically, swinging its leg forward as it walks with fierce determination.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_9a1791d5.jpg", - "video_length": 1.0, - "job_id": "9a1791d5", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_9a1791d5.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:34:39.179092+00:00" - }, - { - "prompt": "The girl dances playfully, with lively arm and leg movements, full of energy.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_62e1867e.jpg", - "video_length": 1.0, - "job_id": "62e1867e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_62e1867e.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:38:35.473323+00:00" - }, - { - "prompt": "The woman dances gracefully, with lively arm movements, as if she is twirling and enjoying the rhythm.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_8765ad09.jpg", - "video_length": 1.0, - "job_id": "8765ad09", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_8765ad09.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:41:31.255838+00:00" - }, - { - "prompt": "The cartoon pig dances happily, waving one hand and bouncing with cheerful energy.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_6b33b574.jpg", - "video_length": 1.0, - "job_id": "6b33b574", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_6b33b574.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:52:42.334392+00:00" - }, - { - "prompt": "The plush teddy bear dances joyfully, swaying its colorful striped outfit with lively, playful movements.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_a57de8ad.jpg", - "video_length": 1.0, - "job_id": "a57de8ad", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_a57de8ad.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T07:57:22.342839+00:00" - }, - { - "prompt": "The young man throws a confident punch forward, with a determined expression, as if striking with purpose.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_dfef5379.jpg", - "video_length": 1.0, - "job_id": "dfef5379", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_dfef5379.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:01:33.562178+00:00" - }, - { - "prompt": "The cute bear with purple hair stands up slowly, stretching its arms and legs as it rises.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_0550ef4e.jpg", - "video_length": 1.0, - "job_id": "0550ef4e", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_0550ef4e.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:06:14.083395+00:00" - }, - { - "prompt": "The animated character dances cheerfully, waving peace sign with one hand while swaying its leafy body.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_4b60e5f6.jpg", - "video_length": 1.0, - "job_id": "4b60e5f6", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_4b60e5f6.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:09:05.567346+00:00" - }, - { - "prompt": "The cute pink character dances happily, waving one arm and bouncing with joy.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_210239e4.jpg", - "video_length": 1.0, - "job_id": "210239e4", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_210239e4.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:13:21.705831+00:00" - }, - { - "prompt": "The cartoon dog raises its paw and throws a punch with energetic motion.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_135eea25.jpg", - "video_length": 1.0, - "job_id": "135eea25", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_135eea25.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:16:47.028541+00:00" - }, - { - "prompt": "The cute character dances joyfully, with lively arm movements, swirling happily on one foot.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_b439bb03.jpg", - "video_length": 1.0, - "job_id": "b439bb03", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_b439bb03.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:21:10.266348+00:00" - }, - { - "prompt": "The adorable cartoon puppy walks forward confidently, wiggling its tail and flashing a happy smile, while making a peace sign with its paw.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_22d46a1b.jpg", - "video_length": 1.0, - "job_id": "22d46a1b", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_22d46a1b.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:28:12.000348+00:00" - }, - { - "prompt": "The girl dances happily, waving her hand with a peace sign, bouncing joyfully on her feet.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_602d6b9a.jpg", - "video_length": 1.0, - "job_id": "602d6b9a", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_602d6b9a.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:32:33.273640+00:00" - }, - { - "prompt": "The girl dances energetically, with lively, expressive movements, embodying joy and rhythm.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_5edf87a5.jpg", - "video_length": 1.0, - "job_id": "5edf87a5", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_5edf87a5.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:39:20.936148+00:00" - }, - { - "prompt": "The dragon exhales fire passionately, with flames bursting from its mouth as it flies through the air.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_816d4cfe.jpg", - "video_length": 1.0, - "job_id": "816d4cfe", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_816d4cfe.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:45:47.506338+00:00" - }, - { - "prompt": "The cute blob character dances joyfully, with arms raised and moving rhythmically, full of cheerful energy.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_ca952593.jpg", - "video_length": 1.0, - "job_id": "ca952593", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_ca952593.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:51:13.755579+00:00" - }, - { - "prompt": "The dragons breathe fire, with flames flickering brightly from their mouths as they stand confidently.", - "image_path": "D:\\workspace\\FramePack\\temp_queue_images\\queue_image_e78723c5.jpg", - "video_length": 1.0, - "job_id": "e78723c5", - "seed": -1, - "use_teacache": true, - "gpu_memory_preservation": 6.0, - "steps": 25, - "cfg": 1.0, - "gs": 10.0, - "rs": 0.0, - "status": "completed", - "thumbnail": "D:\\workspace\\FramePack\\temp_queue_images\\thumb_e78723c5.jpg", - "mp4_crf": 16.0, - "progress": 100, - "progress_step": 25, - "progress_total": 25, - "progress_info": "Finished", - "lora_scale": 1.0, - "lora_path": null, - "updated_at": "2025-04-26T08:56:43.794623+00:00" - } -] \ No newline at end of file +[] \ No newline at end of file diff --git a/quick_prompts.json b/quick_prompts.json index 777c4a50..af0abfb4 100644 --- a/quick_prompts.json +++ b/quick_prompts.json @@ -7,8 +7,4 @@ "prompt": "A character doing some simple body movements.", "length": 5.0 }, - { - "prompt": "This digitally rendered animation shows a beautiful young woman wearing swimwear . She is looking behind her, with her hands over her breasts.\nShe starts the video shyly looking at the viewer and pulling her swimwear up. One second later, her breasts are revealed. Then, she pinches her nipples. Finally, she pulls her swimwear back up.\nbreast drop, clothes pull, breasts, lifting own clothes, undressing, no bra, dress, nipples", - "length": 5 - } ] \ No newline at end of file From c645f72ac904528973206fa72b340cfdacb0f188 Mon Sep 17 00:00:00 2001 From: hndrr Date: Sun, 27 Apr 2025 14:31:01 +0900 Subject: [PATCH 03/11] =?UTF-8?q?quick=5Fprompts.json=E3=81=AE=E6=9C=AB?= =?UTF-8?q?=E5=B0=BE=E3=81=AB=E6=94=B9=E8=A1=8C=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- quick_prompts.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_prompts.json b/quick_prompts.json index af0abfb4..7e0a18d5 100644 --- a/quick_prompts.json +++ b/quick_prompts.json @@ -6,5 +6,5 @@ { "prompt": "A character doing some simple body movements.", "length": 5.0 - }, + } ] \ No newline at end of file From 79c83fc7b5787e3ff96d428b983fa3397a9851a5 Mon Sep 17 00:00:00 2001 From: hndrr Date: Sun, 27 Apr 2025 14:39:24 +0900 Subject: [PATCH 04/11] =?UTF-8?q?GPU=E3=83=87=E3=83=90=E3=82=A4=E3=82=B9?= =?UTF-8?q?=E3=81=AE=E9=81=B8=E6=8A=9E=E3=83=AD=E3=82=B8=E3=83=83=E3=82=AF?= =?UTF-8?q?=E3=82=92=E3=83=86=E3=82=B9=E3=83=88=E3=83=95=E3=82=A1=E3=82=A4?= =?UTF-8?q?=E3=83=AB=E3=81=AB=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_api.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_api.py b/tests/test_api.py index 6fb13f75..e3c8af64 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -13,6 +13,11 @@ # Assuming your FastAPI app instance is named 'app' in 'api/api.py' from api.api import app +if torch.cuda.is_available(): + gpu = torch.device(f'cuda:{torch.cuda.current_device()}') +else: + gpu = torch.device('cpu') + # Create a TestClient instance client = TestClient(app) From bae11a4b66a5c39473aeb31d930bffe3180361d7 Mon Sep 17 00:00:00 2001 From: hndrr Date: Sun, 27 Apr 2025 14:44:37 +0900 Subject: [PATCH 05/11] =?UTF-8?q?GPU=E3=83=87=E3=83=90=E3=82=A4=E3=82=B9?= =?UTF-8?q?=E3=81=AE=E9=81=B8=E6=8A=9E=E3=83=AD=E3=82=B8=E3=83=83=E3=82=AF?= =?UTF-8?q?=E3=82=92=E4=BE=8B=E5=A4=96=E5=87=A6=E7=90=86=E3=81=A7=E3=83=A9?= =?UTF-8?q?=E3=83=83=E3=83=97=E3=81=97=E3=80=81=E3=82=A8=E3=83=A9=E3=83=BC?= =?UTF-8?q?=E3=83=8F=E3=83=B3=E3=83=89=E3=83=AA=E3=83=B3=E3=82=B0=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_api.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tests/test_api.py b/tests/test_api.py index e3c8af64..6803a804 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -13,13 +13,16 @@ # Assuming your FastAPI app instance is named 'app' in 'api/api.py' from api.api import app -if torch.cuda.is_available(): - gpu = torch.device(f'cuda:{torch.cuda.current_device()}') -else: +try: + if torch.cuda.is_available(): + gpu = torch.device(f'cuda:{torch.cuda.current_device()}') + else: + gpu = torch.device('cpu') +except Exception: gpu = torch.device('cpu') -# Create a TestClient instance +# Create a TestClien instance client = TestClient(app) From 6948c700f72bb8c5dec7b4eaf37dd2be376f66aa Mon Sep 17 00:00:00 2001 From: hndrr Date: Sun, 27 Apr 2025 14:53:50 +0900 Subject: [PATCH 06/11] =?UTF-8?q?GPU=E3=83=87=E3=83=90=E3=82=A4=E3=82=B9?= =?UTF-8?q?=E3=81=AE=E9=81=B8=E6=8A=9E=E3=83=AD=E3=82=B8=E3=83=83=E3=82=AF?= =?UTF-8?q?=E3=82=92=E4=BE=8B=E5=A4=96=E5=87=A6=E7=90=86=E3=81=A7=E3=83=A9?= =?UTF-8?q?=E3=83=83=E3=83=97=E3=81=97=E3=80=81=E3=82=A8=E3=83=A9=E3=83=BC?= =?UTF-8?q?=E3=83=8F=E3=83=B3=E3=83=89=E3=83=AA=E3=83=B3=E3=82=B0=E3=82=92?= =?UTF-8?q?=E6=94=B9=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- diffusers_helper/memory.py | 11 +++++++++-- tests/test_api.py | 11 ++++------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/diffusers_helper/memory.py b/diffusers_helper/memory.py index 3380c538..6327703c 100644 --- a/diffusers_helper/memory.py +++ b/diffusers_helper/memory.py @@ -3,9 +3,16 @@ import torch - cpu = torch.device('cpu') -gpu = torch.device(f'cuda:{torch.cuda.current_device()}') + +try: + if torch.cuda.is_available(): + gpu = torch.device(f'cuda:{torch.cuda.current_device()}') + else: + gpu = torch.device('cpu') +except Exception: + gpu = torch.device('cpu') + gpu_complete_modules = [] diff --git a/tests/test_api.py b/tests/test_api.py index 6803a804..e3c8af64 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -13,16 +13,13 @@ # Assuming your FastAPI app instance is named 'app' in 'api/api.py' from api.api import app -try: - if torch.cuda.is_available(): - gpu = torch.device(f'cuda:{torch.cuda.current_device()}') - else: - gpu = torch.device('cpu') -except Exception: +if torch.cuda.is_available(): + gpu = torch.device(f'cuda:{torch.cuda.current_device()}') +else: gpu = torch.device('cpu') -# Create a TestClien instance +# Create a TestClient instance client = TestClient(app) From cebad7c4fa8a0bc85b0730b7ffdef5ba0f3fbafd Mon Sep 17 00:00:00 2001 From: hndrr Date: Sun, 27 Apr 2025 15:02:10 +0900 Subject: [PATCH 07/11] =?UTF-8?q?torch=E3=81=A8torchvision=E3=82=92require?= =?UTF-8?q?ments.txt=E3=81=AB=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requirements.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index 7839def1..002f7153 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,6 +9,8 @@ numpy==1.26.2 scipy==1.12.0 requests==2.31.0 torchsde==0.2.6 +torch +torchvision einops opencv-contrib-python From 35da78413259da71da7947f65d66bec8c81feb2a Mon Sep 17 00:00:00 2001 From: hndrr Date: Sun, 27 Apr 2025 15:21:23 +0900 Subject: [PATCH 08/11] =?UTF-8?q?get=5Fcuda=5Ffree=5Fmemory=5Fgb=E9=96=A2?= =?UTF-8?q?=E6=95=B0=E3=81=AE=E3=82=A8=E3=83=A9=E3=83=BC=E3=83=8F=E3=83=B3?= =?UTF-8?q?=E3=83=89=E3=83=AA=E3=83=B3=E3=82=B0=E3=82=92=E6=94=B9=E5=96=84?= =?UTF-8?q?=E3=81=97=E3=80=81=E3=83=A1=E3=83=A2=E3=83=AA=E7=B5=B1=E8=A8=88?= =?UTF-8?q?=E3=81=AE=E3=82=AD=E3=83=BC=E3=81=8C=E5=AD=98=E5=9C=A8=E3=81=97?= =?UTF-8?q?=E3=81=AA=E3=81=84=E5=A0=B4=E5=90=88=E3=81=AB=E5=AE=89=E5=85=A8?= =?UTF-8?q?=E3=81=AB0=E3=82=92=E8=BF=94=E3=81=99=E3=82=88=E3=81=86?= =?UTF-8?q?=E3=81=AB=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- diffusers_helper/memory.py | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/diffusers_helper/memory.py b/diffusers_helper/memory.py index 6327703c..f866741d 100644 --- a/diffusers_helper/memory.py +++ b/diffusers_helper/memory.py @@ -79,13 +79,23 @@ def get_cuda_free_memory_gb(device=None): if device is None: device = gpu - memory_stats = torch.cuda.memory_stats(device) - bytes_active = memory_stats['active_bytes.all.current'] - bytes_reserved = memory_stats['reserved_bytes.all.current'] - bytes_free_cuda, _ = torch.cuda.mem_get_info(device) - bytes_inactive_reserved = bytes_reserved - bytes_active - bytes_total_available = bytes_free_cuda + bytes_inactive_reserved - return bytes_total_available / (1024 ** 3) + if not torch.cuda.is_available(): + return 0 # GPUが無い場合は0を返す + + + try: + memory_stats = torch.cuda.memory_stats(device) + bytes_active = memory_stats.get('active_bytes.all.current') + if bytes_active is None: + # キーが存在しない場合、安全のため0を返す + return 0 + bytes_reserved = memory_stats['reserved_bytes.all.current'] + bytes_free_cuda, _ = torch.cuda.mem_get_info(device) + bytes_inactive_reserved = bytes_reserved - bytes_active + bytes_total_available = bytes_free_cuda + bytes_inactive_reserved + return bytes_total_available / (1024 ** 3) + except Exception: + return 0 def move_model_to_device_with_memory_preservation(model, target_device, preserved_memory_gb=0): From a5390645b4ffd9e9a8e30d26058c26bd21f5d8ea Mon Sep 17 00:00:00 2001 From: hndrr Date: Sun, 27 Apr 2025 15:26:18 +0900 Subject: [PATCH 09/11] =?UTF-8?q?get=5Fcuda=5Ffree=5Fmemory=5Fgb=E9=96=A2?= =?UTF-8?q?=E6=95=B0=E3=81=AE=E4=B8=8D=E8=A6=81=E3=81=AA=E7=A9=BA=E8=A1=8C?= =?UTF-8?q?=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- diffusers_helper/memory.py | 1 - 1 file changed, 1 deletion(-) diff --git a/diffusers_helper/memory.py b/diffusers_helper/memory.py index f866741d..49ba80c8 100644 --- a/diffusers_helper/memory.py +++ b/diffusers_helper/memory.py @@ -82,7 +82,6 @@ def get_cuda_free_memory_gb(device=None): if not torch.cuda.is_available(): return 0 # GPUが無い場合は0を返す - try: memory_stats = torch.cuda.memory_stats(device) bytes_active = memory_stats.get('active_bytes.all.current') From ce100409ba6fa7e04da14126830cee104332d45b Mon Sep 17 00:00:00 2001 From: hndrr Date: Sun, 27 Apr 2025 19:24:47 +0900 Subject: [PATCH 10/11] =?UTF-8?q?=E3=83=87=E3=83=90=E3=83=83=E3=82=B0?= =?UTF-8?q?=E7=94=A8=E3=81=AEprint=E6=96=87=E3=82=92=E3=82=B3=E3=83=A1?= =?UTF-8?q?=E3=83=B3=E3=83=88=E3=82=A2=E3=82=A6=E3=83=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- diffusers_helper/models/hunyuan_video_packed.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/diffusers_helper/models/hunyuan_video_packed.py b/diffusers_helper/models/hunyuan_video_packed.py index a724e361..96c10132 100644 --- a/diffusers_helper/models/hunyuan_video_packed.py +++ b/diffusers_helper/models/hunyuan_video_packed.py @@ -591,13 +591,13 @@ def forward( # 3. Modulation and residual connection hidden_states = torch.cat([attn_output, mlp_hidden_states], dim=2) - print(f"DEBUG: Before proj_out - hidden_states device: {hidden_states.device}") - print(f"DEBUG: Before proj_out - gate device: {gate.device}") + # print(f"DEBUG: Before proj_out - hidden_states device: {hidden_states.device}") + # print(f"DEBUG: Before proj_out - gate device: {gate.device}") # Check proj_out layer's device (assuming it's a nn.Module with parameters) proj_out_device = next(self.proj_out.parameters()).device if list(self.proj_out.parameters()) else "No parameters" - print(f"DEBUG: Before proj_out - self.proj_out device: {proj_out_device}") + # print(f"DEBUG: Before proj_out - self.proj_out device: {proj_out_device}") proj_out_result = self.proj_out(hidden_states) - print(f"DEBUG: After proj_out - proj_out_result device: {proj_out_result.device}") + # print(f"DEBUG: After proj_out - proj_out_result device: {proj_out_result.device}") hidden_states = gate * proj_out_result # Error likely occurs here hidden_states = hidden_states + residual From 9f863fe3721a161a2b67869b8fe8b158be09f7d2 Mon Sep 17 00:00:00 2001 From: hndrr Date: Sun, 27 Apr 2025 20:43:15 +0900 Subject: [PATCH 11/11] =?UTF-8?q?=E3=83=97=E3=83=AC=E3=83=93=E3=83=A5?= =?UTF-8?q?=E3=83=BC=E6=A9=9F=E8=83=BD=E3=82=92=E5=AE=9F=E8=A3=85=E3=81=97?= =?UTF-8?q?=E3=80=81=E3=82=B8=E3=83=A7=E3=83=96=E3=81=AE=E9=80=B2=E8=A1=8C?= =?UTF-8?q?=E7=8A=B6=E6=B3=81=E3=81=AB=E5=BF=9C=E3=81=98=E3=81=A6Base64?= =?UTF-8?q?=E3=82=A8=E3=83=B3=E3=82=B3=E3=83=BC=E3=83=89=E3=81=95=E3=82=8C?= =?UTF-8?q?=E3=81=9F=E3=83=97=E3=83=AC=E3=83=93=E3=83=A5=E3=83=BC=E7=94=BB?= =?UTF-8?q?=E5=83=8F=E3=82=92=E7=94=9F=E6=88=90=E3=83=BB=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E3=81=99=E3=82=8B=E6=A9=9F=E8=83=BD=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/api.py | 4 +- api/queue_manager.py | 41 ++++++++++++-- api/worker.py | 40 +++++++++++++- api_preview_plan.md | 125 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 204 insertions(+), 6 deletions(-) create mode 100644 api_preview_plan.md diff --git a/api/api.py b/api/api.py index e6b3ca07..ffa72b9a 100644 --- a/api/api.py +++ b/api/api.py @@ -23,7 +23,7 @@ from . import models from . import queue_manager from . import worker -from . import video_watcher # 追加: Video Watcher module +from . import video_watcher # --- Global State --- # Dictionary to hold loaded models @@ -35,7 +35,7 @@ currently_processing_job_id: str | None = None # --- Video Watcher State --- sse_clients: List[asyncio.Queue] = [] # List to hold client queues for SSE -observer: Observer | None = None # Watchdog observer instance +observer: Observer | None = None # type: ignore # Watchdog observer instance # --- Lifespan Context Manager --- diff --git a/api/queue_manager.py b/api/queue_manager.py index 16422e4e..d8063b94 100644 --- a/api/queue_manager.py +++ b/api/queue_manager.py @@ -4,9 +4,9 @@ import uuid import numpy as np import logging -from dataclasses import dataclass, field # Import field -from typing import Optional -from datetime import datetime, timezone # Import datetime and timezone +from dataclasses import dataclass, field +from typing import Optional, Dict +from datetime import datetime, timezone from PIL import Image # from PIL.PngImagePlugin import PngInfo # No longer needed for JPEG saving @@ -137,6 +137,9 @@ def from_dict(cls, data): # Initialize job queue as a list job_queue = [] +# Dictionary to hold the latest preview image (Base64) for processing jobs (in-memory only) +current_previews: Dict[str, str] = {} + def save_queue(): global job_queue @@ -416,6 +419,11 @@ def update_job_status(job_id: str, status: str, thumbnail: str = None): else: print(f"Job with ID {job_id} not found in memory or file for status update.") + # Clear preview if the job reached a terminal state + is_terminal = status == "completed" or status == "cancelled" or status.startswith("failed") + if is_terminal: + clear_current_preview(job_id) + return job_updated @@ -423,6 +431,31 @@ def update_job_status(job_id: str, status: str, thumbnail: str = None): logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s') +# --- Preview Data Management (In-Memory) --- + +def update_current_preview(job_id: str, preview_base64: str): + """Stores the latest preview image Base64 string for a job.""" + global current_previews + current_previews[job_id] = preview_base64 + # logging.debug(f"Updated preview for job {job_id}") # Optional: Debug logging + + +def get_current_preview(job_id: str) -> Optional[str]: + """Retrieves the latest preview image Base64 string for a job.""" + global current_previews + return current_previews.get(job_id) + + +def clear_current_preview(job_id: str): + """Removes the preview image Base64 string for a job.""" + global current_previews + if job_id in current_previews: + del current_previews[job_id] + logging.info(f"Cleared preview for job {job_id}") + + +# --- Job Progress Update --- + def update_job_progress(job_id: str, progress: float, step: int, total: int, info: str): """Updates the progress fields of a job in the global queue and saves the file.""" logging.info(f"Attempting to update progress for job {job_id}: progress={progress}, step={step}, total={total}, info='{info}'") @@ -649,6 +682,8 @@ def cleanup_jobs_by_max_count(max_completed_jobs: int = settings.MAX_COMPLETED_J files_to_delete.append(job.image_path) if job.thumbnail: files_to_delete.append(job.thumbnail) + # Also clear any lingering preview data for the removed job + clear_current_preview(job.job_id) removed_count += 1 # Combine kept terminal jobs and active jobs for the new queue diff --git a/api/worker.py b/api/worker.py index 669c60b4..d10b3fab 100644 --- a/api/worker.py +++ b/api/worker.py @@ -6,6 +6,9 @@ from PIL import Image # Removed ImageDraw, ImageFont # from PIL.PngImagePlugin import PngInfo # No longer needed for JPEG saving import traceback +import base64 # Add base64 +import io # Add io +import einops # Add einops # Assuming models and tokenizers are loaded elsewhere and passed or accessed globally/via context # This will be refined when creating models.py and integrating @@ -16,6 +19,7 @@ encode_prompt_conds, vae_decode, vae_encode, + vae_decode_fake, # Add vae_decode_fake ) from diffusers_helper.utils import ( @@ -416,6 +420,7 @@ def update_progress(step_info: str, percentage: float = 0.0, current_step: int = # K-Diffusion Sampling Callback def callback(d): + # --- Progress Update --- current_cb_step = d['i'] + 1 # 1-based step for the current section total_cb_steps = steps # Total steps for this section @@ -437,7 +442,38 @@ def callback(d): info=hint ) - # Check for cancellation signal within callback + # --- Preview Generation --- + try: + # Only generate preview every N steps or on the last step to reduce overhead + if current_cb_step % 2 == 0 or current_cb_step == total_cb_steps: + preview_latent = d['denoised'] + preview_tensor = vae_decode_fake(preview_latent) # Use vae_decode_fake + + # Convert tensor to PIL Image + preview_np = (preview_tensor * 255.0).detach().cpu().numpy().clip(0, 255).astype(np.uint8) + # Rearrange: b c t h w -> (b h) (t w) c (assuming single batch) + # vae_decode_fake likely returns B C T H W, where T might be > 1 + preview_np_rearranged = einops.rearrange(preview_np, 'b c t h w -> (b h) (t w) c') + + preview_image = Image.fromarray(preview_np_rearranged) + + # Save image to buffer as JPEG + buffer = io.BytesIO() + preview_image.save(buffer, format="JPEG", quality=75) # Adjust quality as needed + buffer.seek(0) + + # Encode to Base64 + preview_base64_data = base64.b64encode(buffer.getvalue()).decode('utf-8') + preview_base64_string = f"data:image/jpeg;base64,{preview_base64_data}" + + # Update preview in queue_manager (in-memory) + queue_manager.update_current_preview(job_id, preview_base64_string) + # logging.debug(f"Job {job_id}: Updated preview at step {current_cb_step}") # Optional debug log + except Exception as preview_e: + # Log error but don't necessarily stop the whole process + logging.warning(f"Job {job_id}: Error generating preview at step {current_cb_step}: {preview_e}") + + # --- Cancellation Check --- current_job_status_inner = queue_manager.get_job_by_id(job_id) # Use the function that reads the file if current_job_status_inner and current_job_status_inner.status == "cancelled": # Use current_cb_step which is defined in this scope @@ -561,6 +597,8 @@ def callback(d): unload_complete_models( text_encoder, text_encoder_2, image_encoder, vae, transformer ) + # Clear preview data from memory + queue_manager.clear_current_preview(job_id) print(f"Worker finished for job {job_id}") diff --git a/api_preview_plan.md b/api_preview_plan.md new file mode 100644 index 00000000..52fab76d --- /dev/null +++ b/api_preview_plan.md @@ -0,0 +1,125 @@ +# API プレビュー機能 実装計画 + +## 1. 目的 + +`api/` ディレクトリ内の FastAPI アプリケーションにおいて、`demo_gradio.py` と同様の動画生成中のプレビュー機能を実装する。これにより、API クライアントは生成プロセスの途中経過をリアルタイムで確認できるようになる。 + +## 2. 現状分析と課題 + +* **`demo_gradio.py` のプレビュー:** + * `worker` 内の `sample_hunyuan` コールバックで `vae_decode_fake` を使用し、プレビュー画像を生成。 + * `AsyncStream` を介して Gradio UI にプレビュー画像を送信。 +* **`api/worker.py` の現状:** + * `sample_hunyuan` のコールバックは進捗テキスト更新とキャンセルチェックのみ。プレビュー生成・送信は未実装。 + * `worker` からクライアントへのリアルタイムデータ送信手段が直接はない。 +* **API での実現課題:** + * `api/worker.py` のコールバックでプレビュー画像を生成する必要がある。 + * 生成したプレビュー画像を API クライアントにリアルタイムで送信する仕組みが必要。 + * `vae_decode_fake` 関数の利用可否確認 (→ 確認済み、利用可能)。 + +## 3. 計画 + +### 3.1. 情報収集 (完了) + +* `diffusers_helper/hunyuan.py` を確認し、`vae_decode_fake` 関数が存在することを確認した。 + +### 3.2. API 設計 + +* 既存の Server-Sent Events (SSE) エンドポイント `/stream/status/{job_id}` (`api.py` 内) を拡張し、プレビュー画像データも送信するようにする。 +* SSE イベントのデータ構造に、オプションとして Base64 エンコードされたプレビュー画像 (`preview_image_base64`) を追加する。 + + ```json + { + "job_id": "...", + "status": "processing", + "progress": 25.5, + "progress_step": 5, + "progress_total": 20, + "progress_info": "Sampling...", + "preview_image_base64": "data:image/jpeg;base64,..." // Optional + } + ``` + +### 3.3. 実装方針 + +* **`api/worker.py` の修正:** + * `callback` 関数内で、`sample_hunyuan` から渡される中間潜在変数 (`d['denoised']`) を取得する。 + * `vae_decode_fake` を使用してプレビュー画像を生成する。 + * 生成した画像を JPEG 形式にエンコードし、Base64 文字列に変換する (`data:image/jpeg;base64,...` 形式)。 + * 変換した Base64 文字列を `queue_manager` の新しい関数 (例: `update_current_preview`) を呼び出してメモリ上のストアに一時保存する。 +* **`api/queue_manager.py` の修正:** + * プレビュー情報 (Base64 文字列) を一時的に保持するためのグローバルな辞書 (例: `current_previews = {}`) を追加する。 + * `worker.py` からプレビュー情報を受け取り、`current_previews` を更新する関数 (例: `update_current_preview(job_id, preview_base64)`) を追加する。 + * SSE ハンドラからプレビュー情報を取得する関数 (例: `get_current_preview(job_id)`) を追加する。 + * ジョブ完了時または失敗時に `current_previews` から該当ジョブのエントリを削除する処理を追加する (例: `clear_current_preview(job_id)`)。 + * **注意:** このプレビュー情報は揮発性であり、JSON キューファイル (`job_queue.json`) には保存しない。 +* **`api/api.py` の修正:** + * `/stream/status/{job_id}` の SSE `event_generator` 関数を修正する。 + * ジョブが `processing` 状態の場合、`queue_manager` の新しい関数 (例: `get_current_preview`) を呼び出して最新のプレビュー画像 Base64 文字列を取得する。 + * 取得した Base64 文字列を SSE イベントデータの `preview_image_base64` フィールドに含めてクライアントに送信する。 + +### 3.4. 処理フロー (Mermaid図) + +```mermaid +sequenceDiagram + participant Client + participant FastAPI (api.py) + participant QueueManager (queue_manager.py) + participant Worker (worker.py) + participant Models (models.py / diffusers_helper) + + Client->>FastAPI: POST /generate (画像, プロンプト) + FastAPI->>QueueManager: add_to_queue() + QueueManager-->>FastAPI: job_id + FastAPI-->>Client: {job_id: ...} + + Client->>FastAPI: GET /stream/status/{job_id} (SSE接続) + FastAPI->>FastAPI: event_generator() 開始 + + loop Worker Thread + Worker->>QueueManager: get_next_job() + QueueManager-->>Worker: job (or None) + opt job is not None + Worker->>QueueManager: update_job_status(job_id, "processing") # ファイル更新 + Worker->>Models: モデルロード/準備 ... + Worker->>Models: sample_hunyuan(..., callback=callback_func) + loop Sampling Steps + Models->>Worker: callback_func(d) 呼び出し + Worker->>Models: vae_decode_fake(d['denoised']) # プレビュー生成 + Models-->>Worker: preview_image_tensor + Worker->>Worker: 画像をJPEG Base64に変換 + Worker->>QueueManager: update_current_preview(job_id, preview_base64) # メモリ更新 + Worker->>QueueManager: update_job_progress(...) # ファイル更新 (進捗のみ) + end + Models-->>Worker: generated_latents + Worker->>Models: vae_decode() # 最終デコード + Models-->>Worker: final_pixels + Worker->>Worker: save_bcthw_as_mp4() + Worker->>QueueManager: update_job_status(job_id, "completed") # ファイル更新 + Worker->>QueueManager: clear_current_preview(job_id) # メモリクリア + end + end + + loop SSE Connection (event_generator) + FastAPI->>QueueManager: get_job_by_id(job_id) (ファイルから進捗取得) + alt job is processing + FastAPI->>QueueManager: get_current_preview(job_id) (メモリからプレビュー取得) + QueueManager-->>FastAPI: preview_base64 (or None) + end + FastAPI->>Client: event: progress, data: {..., preview_image_base64: ...} # 進捗とプレビュー送信 + alt job is terminal + FastAPI->>Client: event: status, data: {...} # 最終ステータス送信 + break + end + FastAPI->>FastAPI: asyncio.sleep(1) + end +``` + +## 4. 懸念点 + +* **データ受け渡し:** `worker` スレッドと SSE ハンドラ (FastAPI の非同期コンテキスト) 間でのプレビューデータ受け渡し (`queue_manager` のメモリ上の辞書) が、スレッドセーフティやパフォーマンスの観点から問題ないか。高頻度更新時の競合やメモリ使用量に注意が必要。 +* **パフォーマンス:** プレビュー画像の生成 (`vae_decode_fake`)、JPEG エンコード、Base64 エンコードが `worker` のコールバック内で実行されるため、全体の生成時間に影響を与える可能性がある。 + +## 5. 次のステップ + +* この計画に基づき、`code` モードに切り替えて実装を開始する。