| | import gradio as gr |
| |
|
| | |
| | def embed_webcam_test(iframe_url): |
| | return f"<iframe src='{iframe_url}' width='100%' height='600' allow='camera; microphone; fullscreen; speaker'></iframe>" |
| |
|
| | |
| | with gr.Blocks() as app: |
| | with gr.Tab("WebcamTests.com"): |
| | gr.HTML(embed_webcam_test("https://webcamtests.com")) |
| |
|
| | with gr.Tab("Clideo"): |
| | gr.HTML(embed_webcam_test("https://clideo.com/tools/webcam-test")) |
| |
|
| | with gr.Tab("Direec"): |
| | gr.HTML(embed_webcam_test("https://direec.com/tools/webcam-test")) |
| |
|
| | with gr.Tab("IELTS Chatroom"): |
| | gr.HTML(embed_webcam_test("https://c528d9a8.s3.ap-southeast-2.amazonaws.com/index.html")) |
| | app.launch() |
| |
|