-
-
Notifications
You must be signed in to change notification settings - Fork 382
Expand file tree
/
Copy pathDefaultMediaDevices.cs
More file actions
77 lines (66 loc) · 2.31 KB
/
DefaultMediaDevices.cs
File metadata and controls
77 lines (66 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License
// See the LICENSE file in the project root for more information.
// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone
namespace BootstrapBlazor.Components;
class DefaultMediaDevices(IJSRuntime jsRuntime) : IMediaDevices
{
private JSModule? _module = null;
private async Task<JSModule> LoadModule()
{
_module ??= await jsRuntime.LoadModuleByName("media");
return _module;
}
public async Task<IEnumerable<IMediaDeviceInfo>?> EnumerateDevices()
{
var module = await LoadModule();
return await module.InvokeAsync<List<MediaDeviceInfo>?>("enumerateDevices");
}
public async Task<bool> Open(string type, MediaTrackConstraints constraints)
{
var module = await LoadModule();
return await module.InvokeAsync<bool>("open", type, constraints);
}
public async Task<bool> Close(string? selector)
{
var module = await LoadModule();
return await module.InvokeAsync<bool>("close", selector);
}
public async Task Capture()
{
var module = await LoadModule();
await module.InvokeVoidAsync("capture");
}
public async Task<string?> GetPreviewUrl()
{
var module = await LoadModule();
return await module.InvokeAsync<string?>("getPreviewUrl");
}
public async Task<Stream?> GetPreviewData()
{
Stream? ret = null;
var module = await LoadModule();
var stream = await module.InvokeAsync<IJSStreamReference?>("getPreviewData");
if (stream != null)
{
ret = await stream.OpenReadStreamAsync(stream.Length);
}
return ret;
}
public async Task<bool> Apply(MediaTrackConstraints constraints)
{
var module = await LoadModule();
return await module.InvokeAsync<bool>("apply", constraints);
}
public async Task<Stream?> GetAudioData()
{
Stream? ret = null;
var module = await LoadModule();
var stream = await module.InvokeAsync<IJSStreamReference?>("getAudioData");
if (stream != null)
{
ret = await stream.OpenReadStreamAsync(stream.Length);
}
return ret;
}
}