gradio/demo/video_identity_2/run.ipynb
Ali Abdalla 0312c990fb
Playground v1 (#5386)
* 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>
2023-10-19 10:56:10 -07:00

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()