import gradio as gr # 1) Your Hugging Face Space name: SPACE_USERNAME = "hyungonryu" SPACE_NAME = "GoeStationaryVFI" # 2) Base URL for raw MP4 files via "resolve/main": BASE_URL = f"https://huggingface.co/spaces/{SPACE_USERNAME}/{SPACE_NAME}/resolve/main" html_code = f""" Video Sync with Custom UI

Geostationary Satellite Time Interpolation

Hyun Gon Ryu | NVIDIA AI Technology Center Korea

This demo video consists of images generated at one-minute intervals from the KMA GK2A satellite's full-disk images, originally captured at ten-minute intervals, using the VFI technique. By using the wipe scrollbar, you can compare the original video (delineated by a blue line) with the enhanced version. You can adjust the zoom and playback speed, and when played at 0.3x speed, the differences between the two videos become distinctly apparent.
Select Video Set:
Screen Size: Speed:
""" # Build the Gradio app with just an HTML component. def build_app(): with gr.Blocks() as demo: gr.HTML(html_code) return demo demo = build_app() if __name__ == "__main__": demo.launch()