mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-05 11:10:03 +08:00
* changes * broken * working * working * add changeset * useing gradio code component * rework demos * lockfile * fix anyio error * add changeset * changes * many changes * add changeset * lockfile * demos * new * fix load issue * sizing and spacing * gutters not transparent * styling * mobile responsive * fix meta image * remove ffmpeg demos * use latest lite * bring back demo names * more mobile responsive * latest cdn --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
822 B
822 B
Gradio Demo: video_identity_2¶
In [ ]:
!pip install -q gradio
In [ ]:
import gradio as gr def video_identity(video): return video demo = gr.Interface(video_identity, gr.Video(), "playable_video", ) if __name__ == "__main__": demo.launch()