-
I am working on voice recorder app. And I can't find how can I confirm permission to get access to my mike |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Please have a look at :set permissionmediadevices=allow permissionmicrophone=allow Please know that you can always see the permission requests on the notification page, either visit |
Beta Was this translation helpful? Give feedback.
Please have a look at
:h permissionmediadevices
and:h permissionmicrophone
. You need to give permission to both, since the first will allow the site to list the devices, and the second one to make use of the mic. If you only want to give permissions to specific sites, check out:h permissionsallowed
. Some sites want to have the device labels to work as well, in which case you can replaceallow
withallowfull
for the media devices permission, but in short, this should be enough:Please know that you can always see the permission requests on the notification page, either visit
vieb://notifications
or run:notifications
. This can …