mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-09 02:00:44 +08:00
f374eec22d
* image examples fix * fix image test * fix cache examples for audio and video * fix tests * fix audio test * fix restore flagged file * fix tests * reformat * tests fixes * fix test * reformat * format * fix test * reformat * fix image test * renamed video demo * removed redundant test that may have been causing rate limiting Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
19 lines
436 B
Python
19 lines
436 B
Python
import gradio as gr
|
|
import os
|
|
|
|
|
|
def video_identity(video):
|
|
return video
|
|
|
|
|
|
demo = gr.Interface(video_identity,
|
|
gr.Video(),
|
|
"playable_video",
|
|
examples=[
|
|
os.path.join(os.path.dirname(__file__),
|
|
"video/video_sample.mp4")],
|
|
cache_examples=True)
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|