Spaces:
Running on Zero
Running on Zero
File size: 7,695 Bytes
796e051 7cc5bb8 796e051 76ff143 81cedc5 796e051 81cedc5 796e051 81cedc5 796e051 81cedc5 796e051 81cedc5 796e051 81cedc5 796e051 81cedc5 796e051 57dac98 81cedc5 796e051 81cedc5 57dac98 796e051 81cedc5 238b41e 81cedc5 238b41e 81cedc5 76ff143 81cedc5 76ff143 4f3df06 9287473 d86272d 9287473 796e051 81cedc5 796e051 238b41e 81cedc5 796e051 81cedc5 796e051 81cedc5 796e051 81cedc5 796e051 81cedc5 57dac98 81cedc5 57dac98 81cedc5 796e051 39f4972 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | import os, sys, shutil
import json
import glob
import math
import time
from pathlib import Path
from typing import Any, Dict, List, Tuple
import cv2
import ffmpeg
import numpy as np
import torch
import tempfile
import spaces
from fastapi.responses import HTMLResponse
# Temp file bug of gradio
BASE_TMP_DIR = os.path.abspath("./gradio_tmp")
os.makedirs(BASE_TMP_DIR, exist_ok=True)
os.environ["TMPDIR"] = BASE_TMP_DIR
os.environ["TEMP"] = BASE_TMP_DIR
os.environ["TMP"] = BASE_TMP_DIR
os.environ["GRADIO_TEMP_DIR"] = BASE_TMP_DIR
tempfile.tempdir = BASE_TMP_DIR
from gradio import Server
from gradio.data_classes import FileData
# Import your existing project code
root_path = os.path.abspath(".")
sys.path.append(root_path)
from architecture.backbone import build_backbone
from architecture.transformer import build_transformer
from architecture.model import OmniShotCut
from datasets.transforms import Video_Augmentation_Transform
from util.visualization import visualize_concated_frames
from config.label_correspondence import unique_intra_label_mapping, unique_inter_label_mapping
from test_code.inference import single_video_inference, load_model
# -------------------------
# Global cache / constants
# -------------------------
video_transform = Video_Augmentation_Transform(set_type="val")
INTRA_ID2NAME = {v: k for k, v in unique_intra_label_mapping.items()}
INTER_ID2NAME = {v: k for k, v in unique_inter_label_mapping.items()}
# Fixed demo config
DEFAULT_CHECKPOINT_PATH = "checkpoints/OmniShotCut_ckpt.pth"
DEFAULT_NUM_CONTEXT_FRAMES = 0
DEFAULT_MAX_FRAMES_PER_IMG = 132
VIS_DIR = "demo_video_results"
# Public URL safe setting
MAX_GALLERY_PAGES = 20
# Prepare the checkpoint
if not os.path.exists(DEFAULT_CHECKPOINT_PATH):
os.makedirs("checkpoints", exist_ok=True)
os.system("wget -P checkpoints https://huggingface.co/uva-cv-lab/OmniShotCut/resolve/main/OmniShotCut_ckpt.pth")
# Load the model
checkpoint_path = DEFAULT_CHECKPOINT_PATH
model, model_args = load_model(checkpoint_path)
######################## Utilities ########################
def escape_html(x):
x = "" if x is None else str(x)
return (
x.replace("&", "&")
.replace("<", "<")
.replace(">", ">")
.replace('"', """)
.replace("'", "'")
)
def prepare_result_table(
pred_ranges: List[List[int]],
pred_intra_labels: List[int],
pred_inter_labels: List[int],
fps: float,
) -> str:
headers = [
"Index",
"Start Frame",
"End Frame",
"Start Time (s)",
"End Time (s)",
"Intra Label",
"Inter Label",
]
html = """
<div class="result-table-wrap">
<table class="result-table">
<thead>
<tr>
"""
for h in headers:
html += f"<th>{escape_html(h)}</th>"
html += """
</tr>
</thead>
<tbody>
"""
for idx, pred_range in enumerate(pred_ranges):
start_frame = int(pred_range[0])
end_frame = int(pred_range[1])
intra_id = int(pred_intra_labels[idx]) if idx < len(pred_intra_labels) else -1
inter_id = int(pred_inter_labels[idx]) if idx < len(pred_inter_labels) else -1
row = [
idx,
start_frame,
end_frame,
round(start_frame / fps, 3) if fps and fps > 0 else "",
round(end_frame / fps, 3) if fps and fps > 0 else "",
INTRA_ID2NAME.get(intra_id, str(intra_id)),
INTER_ID2NAME.get(inter_id, str(inter_id)),
]
html += "<tr>"
for item in row:
html += f"<td>{escape_html(item)}</td>"
html += "</tr>"
html += """
</tbody>
</table>
</div>
"""
return html
def list_sample_videos(asset_dir: str = "__assets__", max_samples: int = 8) -> List[dict]:
script_dir = os.path.dirname(os.path.abspath(__file__))
asset_dir = os.path.join(script_dir, asset_dir)
if not os.path.isdir(asset_dir):
return []
samples = []
for name in sorted(os.listdir(asset_dir)):
path = os.path.join(asset_dir, name)
if os.path.isfile(path) and name.lower().endswith(".mp4"):
samples.append({"path": path, "name": name})
return samples[:max_samples]
from fastapi.staticfiles import StaticFiles
# -------------------------
# Server and API
# -------------------------
app = Server()
os.makedirs(VIS_DIR, exist_ok=True)
app.mount("/outputs", StaticFiles(directory=VIS_DIR), name="outputs")
@app.api()
def get_examples() -> List[dict]:
samples = list_sample_videos("__assets__/", max_samples=16)
space_id = os.getenv("SPACE_ID")
if space_id:
hub_base = f"https://huggingface.co/spaces/{space_id}/resolve/main/__assets__/"
return [{"url": f"{hub_base}{s['name']}", "orig_name": s["name"]} for s in samples]
return [FileData(path=s["path"], orig_name=s["name"]) for s in samples]
@app.api()
@spaces.GPU(duration=120)
def run_inference(video_file: dict) -> dict:
video_path = video_file["path"]
# ffmpeg/opencv often need a file extension to correctly parse the container
if not os.path.splitext(video_path)[1]:
orig_name = video_file.get("orig_name") or "input.mp4"
ext = os.path.splitext(orig_name)[1] or ".mp4"
new_path = video_path + ext
if not os.path.exists(new_path):
shutil.copy(video_path, new_path)
video_path = new_path
if not os.path.exists(video_path):
return {"error": "Video file not found"}
# Check if it's a Git LFS pointer instead of a real video
if os.path.getsize(video_path) < 1000:
with open(video_path, "rb") as f:
header = f.read(100)
if b"version https://git-lfs" in header:
return {"error": "LFS pointer detected. Please ensure video files are fully downloaded on the Space."}
print(f"Start processing: {video_path}")
pred_ranges, pred_intra_labels, pred_inter_labels, video_np_full, fps = single_video_inference(
video_path=video_path,
model=model,
model_args=model_args,
num_context_frames=DEFAULT_NUM_CONTEXT_FRAMES,
)
print("Inference finished")
# Prepare visualization directory
cur_vis_dir = os.path.join(VIS_DIR, f"vis_{int(time.time())}")
os.makedirs(cur_vis_dir, exist_ok=True)
# Generate visualization frames
page_paths = visualize_concated_frames(
frames=video_np_full,
out_dir=cur_vis_dir,
highlight_ranges_closed=pred_ranges,
max_frames_per_img=DEFAULT_MAX_FRAMES_PER_IMG,
end_range_exclusive=True,
fps=fps,
start_index=0,
)
gallery_data = []
for p in page_paths[:MAX_GALLERY_PAGES]:
rel_path = os.path.relpath(p, VIS_DIR)
gallery_data.append({"url": f"/outputs/{rel_path}"})
result_table_html = prepare_result_table(
pred_ranges=pred_ranges,
pred_intra_labels=pred_intra_labels,
pred_inter_labels=pred_inter_labels,
fps=fps,
)
return {
"gallery": gallery_data,
"table": result_table_html,
"shot_count": len(pred_ranges)
}
@app.get("/", response_class=HTMLResponse)
async def homepage():
html_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "index.html")
with open(html_path, "r", encoding="utf-8") as f:
return f.read()
if __name__ == "__main__":
app.launch(show_error=True) |