Using a Video Device with getUserMedia in WebView2 in a Kiosk Scenario

I use Microsoft’s WebView2 control for a digital signage desktop application running in fullscreen mode (“kiosk client”). All visible content is HTML coming from a server (on a private network), so the kiosk client itself has to be updated very rarely.

Right now, I am exploring how to display the output of another computer that is (physically) standing nearby, but on a different network, using a video capture device. Showing the video stream in HTML is pretty straightforward using navigator.mediaDevices.getUserMedia(). I will not go into detail on this, as a web search for “webcam video getUserMedia” gives you helpful information on how to get things up and running very quickly.

Instead, the focus of this article is on two problems that I ran into:

How to avoid the request for permission to use the camera

When browsing the web with a normal browser, nobody wants a web page to be able to simply switch on a webcam or a microphone without the user’s consent. That is why it is a good thing that getUserMedia() opens a prompt asking the use for permission.

For an unattended kiosk display, though, such a prompt is a no-go. The request for permission must be handled programmatically. Fortunately, the WebView2 control offers a way to do this.

Let’s say you followed the first steps of the “Get started with WebView2 in WPF” tutorial in the Microsoft documentation, so you have WebView2 control called “webView” in your application window. Now, instead of setting the Source property in XAML, you add an event handler for the Loaded event. After calling EnsureCoreWebView2Async() you can add an event handler for the PermissionRequested event, where things work pretty much as expected: If the requested permission is for the camera, your code allows it.

public partial class MainWindow : Window
{
	public MainWindow()
	{
		InitializeComponent();
		Loaded += HandleLoaded;
	}
	
	private async void HandleLoaded(object sender, RoutedEventArgs e)
	{
		await webView.EnsureCoreWebView2Async(); // important
		webView.CoreWebView2.PermissionRequested += HandlePermissionRequested;
		webView.Source = new Uri("...URI of your page...");
	}
	
	private void HandlePermissionRequested(object? sender, CoreWebView2PermissionRequestedEventArgs e)
	{
		if (e.PermissionKind == CoreWebView2PermissionKind.Camera)
		{
			e.State = CoreWebView2PermissionState.Allow;
		}
	}
}

If you want, you can check the Uri property of the CoreWebView2PermissionRequestedEventArgs to lock down the automatic permission to specific URIs.

How to circumvent the requirement for HTTPS for getUserMedia() - for the purposes of this scenario

My digital signage solution is currently using HTTP. A web page loaded into Edge/WebView2 this way cannot use navigator.mediaDevices.getUserMedia()What does work is using a file URI, both for a local file or a file a remote file share.

A local file deployed with the setup for the kiosk application could require more frequent update installations, though. And a file share for this sole purpose is not exactly an elegant solution.

So what I did was to use WebClient.DownloadFile to download the HTML file on startup via HTTP from the server to a local file in a temporary folder. Then I could navigate to that file using a file URI.

At some point in the future, I will move my application to HTTPS. But until then, this solution is good enough.

Update 2021-12-29: The approach described above no longer works. Please see my other blog post for updated information on a workaround.

No Comments