File size: 8,932 Bytes
eaa9265 9dbe2e6 eaa9265 74e2ebc eaa9265 f3cc2f8 eaa9265 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | import os
import time
import gradio as gr
from byteplussdkarkruntime import Ark
import requests
from datetime import datetime
# Get API key from Hugging Face secret "Key" and CLEAN it
API_KEY = os.environ.get("Key", "").strip()
print(f"✅ Key loaded, length: {len(API_KEY)}")
# Initialize client with proxy
client = Ark(
base_url="https://1hit.no/proxy/proxy.php",
api_key=API_KEY,
timeout=30.0,
max_retries=3,
)
# Fresh new prompts
def poll_via_json(task_id):
"""Check io.json for task status"""
json_url = "https://1hit.no/proxy/io.json"
try:
response = requests.get(json_url)
data = response.json()
if task_id in data:
task_data = data[task_id]
status = task_data.get('status')
if status == 'succeeded':
return task_data.get('video_url')
elif status == 'failed':
return "FAILED"
else:
return "PROCESSING"
except:
pass
return None
def update_prompt(choice):
return DEFAULT_PROMPTS.get(choice, "")
# MANUAL POLLING FUNCTIONS
def manual_poll(task_id):
"""Manually poll a specific task and update io.json"""
if not task_id:
return "❌ Please enter a task ID"
try:
# Call proxy to poll this specific task
url = f"https://1hit.no/proxy/proxy.php?task_id={task_id}"
headers = {"Authorization": f"Bearer {API_KEY}"}
response = requests.get(url, headers=headers)
# Also fetch updated io.json
io_response = requests.get("https://1hit.no/proxy/io.json")
io_data = io_response.json()
if task_id in io_data:
status = io_data[task_id].get('status')
video_url = io_data[task_id].get('video_url')
result = f"✅ Task {task_id}\n"
result += f"Status: {status}\n"
if video_url:
result += f"Video URL: {video_url}\n"
if 'response' in io_data[task_id]:
result += f"Full response: {io_data[task_id]['response']}\n"
return result
else:
return f"❌ Task {task_id} not found in io.json"
except Exception as e:
return f"❌ Error: {str(e)}"
def get_raw_json():
"""Fetch raw io.json"""
try:
r = requests.get("https://1hit.no/proxy/io.json")
return r.json()
except:
return {"error": "Could not fetch io.json"}
# WATCH & DOWNLOAD FUNCTIONS
def get_task_list():
"""Get list of all tasks from io.json"""
try:
r = requests.get("https://1hit.no/proxy/io.json")
data = r.json()
tasks = []
for task_id, task_data in data.items():
status = task_data.get('status', 'unknown')
created = task_data.get('created', 0)
# Format time
time_str = datetime.fromtimestamp(created).strftime('%Y-%m-%d %H:%M:%S')
# Get prompt preview
prompt = task_data.get('request', {}).get('content', [{}])[0].get('text', 'No prompt')
prompt_preview = prompt[:50] + '...' if len(prompt) > 50 else prompt
tasks.append({
"id": task_id,
"status": status,
"created": time_str,
"created_ts": created,
"video_url": task_data.get('video_url', ''),
"prompt": prompt_preview
})
# Sort by created time, newest first
tasks.sort(key=lambda x: x['created_ts'], reverse=True)
return tasks
except Exception as e:
print(f"Error getting task list: {e}")
return []
def refresh_task_list():
"""Refresh the task list dropdown"""
tasks = get_task_list()
choices = [f"{t['id']} | {t['status']} | {t['created']}" for t in tasks]
return gr.Dropdown(choices=choices, value=choices[0] if choices else None)
def load_task(selection):
"""Load selected task details"""
if not selection:
return "No task selected", None, None
task_id = selection.split(' | ')[0]
try:
r = requests.get("https://1hit.no/proxy/io.json")
data = r.json()
task = data.get(task_id, {})
video_url = task.get('video_url', '')
status = task.get('status', 'unknown')
# Get full prompt
prompt = task.get('request', {}).get('content', [{}])[0].get('text', 'No prompt')
# Get created time
created = task.get('created', 0)
created_str = datetime.fromtimestamp(created).strftime('%Y-%m-%d %H:%M:%S')
# Get response data if available
response = task.get('response', {})
info = f"### Task Details\n\n"
info += f"**Task ID:** `{task_id}`\n"
info += f"**Status:** `{status}`\n"
info += f"**Created:** {created_str}\n"
info += f"**Prompt:** {prompt}\n\n"
if status == 'succeeded' and video_url:
info += f"✅ **Video ready!**\n"
info += f"**Download:** [Click here]({video_url})\n"
elif status == 'failed':
error = task.get('response', {}).get('error', 'Unknown error')
info += f"❌ **Failed:** {error}\n"
return info, video_url, video_url
except Exception as e:
return f"Error loading task: {e}", None, None
def update_url_display(image_path, manual_url):
"""Update the URL display based on inputs"""
if manual_url and manual_url.strip():
return manual_url.strip()
elif image_path:
return f"/file={image_path}"
else:
return "No image selected"
# Create the interface
with gr.Blocks(title="BytePlus Video Gallery", theme=gr.themes.Soft()) as demo:
# Tab 2: Manual Polling
with gr.TabItem("🔧 Manual Polling"):
gr.Markdown("### 🔧 Manual Polling & Debug")
with gr.Row():
with gr.Column():
gr.Markdown("#### Poll Specific Task")
task_id_input = gr.Textbox(
label="Task ID",
placeholder="Enter task ID (cgt-...)"
)
poll_btn = gr.Button("🔄 Poll Now", variant="primary")
poll_result = gr.Textbox(label="Poll Result", lines=10)
poll_btn.click(
fn=manual_poll,
inputs=task_id_input,
outputs=poll_result
)
with gr.Column():
gr.Markdown("#### Current io.json")
refresh_btn = gr.Button("🔄 Refresh io.json", variant="secondary")
raw_json = gr.JSON(label="io.json Contents")
refresh_btn.click(
fn=get_raw_json,
outputs=raw_json
)
gr.Markdown("""
### 📝 Instructions
1. Copy a task ID from above (like `cgt-20260217072358-hszt9`)
2. Paste it in the Task ID field
3. Click "Poll Now" to force an update
4. Check io.json to see if status changed
""")
# Tab 3: Watch & Download
with gr.TabItem("📺 Watch & Download"):
gr.Markdown("### 📺 Browse and Download Generated Videos")
with gr.Row():
with gr.Column(scale=1):
refresh_list_btn = gr.Button("🔄 Refresh Task List", variant="primary")
task_list = gr.Dropdown(
label="Select Task",
choices=[],
interactive=True
)
with gr.Column(scale=2):
task_info = gr.Markdown("Select a task to view details")
with gr.Row():
with gr.Column():
video_player = gr.Video(label="Video Player")
download_link = gr.File(label="Download Video")
# Load task list on button click
refresh_list_btn.click(
fn=refresh_task_list,
outputs=task_list
)
# Load task when selected
task_list.change(
fn=load_task,
inputs=task_list,
outputs=[task_info, video_player, download_link]
)
# Auto-load task list when tab is opened
demo.load(
fn=refresh_task_list,
outputs=task_list
)
if __name__ == "__main__":
demo.launch(server_name="0.0.0.0") |