No Microphone working.

#5
by robert1968 - opened

Hi,

Finally started working on RTX3090 but No Microphone enabled.
No settings for requesting enable Microphone in chrome browser. (linux)
I assume you modified the gradio app and forgot/ruin the microphone initiation part...

image.png

Try to click the "Record" button.
If you are accessing to the web ui from non localhost environment (like 192.168.1.xxx), you may need to enable SSL by create a self-singed certificate and modify the code to something like

    iface.launch(
        server_name=args.host,
        server_port=args.port,
        ssl_certfile="/data/shared/cert.pem",
        ssl_keyfile="/data/shared/key.pem",
        ssl_verify=False,
        share=args.share,
        debug=args.debug
    )

Hi.

As you van see on the attached screenshot it is running on localhost 0.0.0.0

Usually application request do you allow microphone access.
The problem is this application not initiated this question.

Record button is disabled because no microphone.

Thanks

Sign up or log in to comment