MediaCapture.FrameSources 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取可用于获取媒体帧的 MediaFrameSource 对象的只读字典。
public:
property IMapView<Platform::String ^, MediaFrameSource ^> ^ FrameSources { IMapView<Platform::String ^, MediaFrameSource ^> ^ get(); };
IMapView<winrt::hstring, MediaFrameSource const&> FrameSources();
public IReadOnlyDictionary<string,MediaFrameSource> FrameSources { get; }
var iMapView = mediaCapture.frameSources;
Public ReadOnly Property FrameSources As IReadOnlyDictionary(Of String, MediaFrameSource)
属性值
MediaFrameSource 对象的只读字典,可以同时使用该字典来获取媒体帧。
Windows 要求
设备系列 |
Windows 10 Anniversary Edition (在 10.0.14393.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v3.0 中引入)
|
应用功能 |
backgroundMediaRecording
|
注解
通过将 MediaCaptureInitializationSettings 对象的 SourceGroup 属性设置为 FindAllAsync 返回的 MediaFrameSourceGroup,然后调用 MediaCapture.InitializeAsync,初始化 MediaCapture 对象以使用媒体帧源。 字典中每个条目的键是与组中每个帧源关联的 MediaFrameSourceInfo 的 Id 属性。
有关使用帧源的详细信息,请参阅 使用 MediaFrameReader 处理媒体帧。