import gradio as gr from IPython.display import HTML, IFrame from IPython.display import YouTubeVideo def display_vid(url): #https://www.youtube.com/watch?v=smUHQndcmOY&t=425s #html = HTML("") #html = "" #vid = YouTubeVideo('smUHQndcmOY&t=425s') return html #https://youtu.be/smUHQndcmOY def fun(url): return gr.Video(value=url) demo = gr.Blocks() with demo: gr.Markdown("

Ask a Question to a YouTube Video and get the timestamp where the probable answer is

") gr.Markdown( "
How many times have you seen a long video/podcast on Youtube and wondered only if there would have been 'explanatory' timestamps it would have been so much better..
" "
Well, using this Space/App you can provide a YouTube video link and then provide some questions that you would like, and the App will generate timestamps/play video at those timestamps for you in the space provided. Idea is that your question could be like 'Is this xxxx thing covered in the video?', or maybe 'does the host talks about the architecture of the model', or maybe 'Does host talk about alien doorway on Mars?' and so on.


This App is Work in Progress, please bear with me.

" ) with gr.Row(): input_url = gr.Textbox() #gr.HTML(placeholder="Enter a video link here..") #input_vid = gr.Video() output_vid = gr.HTML() b1 = gr.Button("Publish Video") #b2 = gr.Button("Generate Image") b1.click(display_vid, input_url, output_vid) #b2.click(poem_to_image, poem_txt, output_image) #examples=examples demo.launch(enable_queue=True, debug=True)