uap5:VideoRendererEffect

启用在应用中激活视频呈现器效果。

元素层次结构

<包>

    <应用程序>

         <应用程序>

              <扩展>

                   <uap5:Extension>

                        <uap5:VideoRendererEffect>

语法

<uap5:VideoRendererEffect
    DisplayName = 'A string with a value between 1 and 256 characters in length. This string is localizable.'
    Description = 'A string with a value between 1 and 2048 characters in length.' 
    wincap3:ActivatableClassId = 'A string with a value between 1 and 255 characters in length.'
    wincap3:Path = 'A string with a value between 1 and 256 characters in length that cannot contain these characters: <, >, ", |, ?, or *.'
    wincap3:ProcessorArchitecture = 'A string value that can be one of the following: "x86", "x64", "arm", "arm64", or "neutral".' />

    <!-- Child elements -->
    uap5:VideoRendererExtensionProfiles{0,1000}
    uap5:InputTypes{0,1000}

</uap5:VideoRendererEffect>

密钥

? 可选 (零个或一个) {} 特定范围的出现次数

特性和元素

属性

属性 说明 数据类型 必须 默认值
DisplayName 视频呈现器显示名称。 值长度介于 1 到 256 个字符之间的字符串。 此字符串可本地化。
说明 视频呈现器效果的说明。 值长度介于 1 到 2048 个字符之间的字符串。
rescap3:ActivableClassId 与此媒体内容关联的类 ID。 值长度介于 1 到 255 个字符之间的字符串。
rescap3:Path 媒体内容的路径。 值长度介于 1 到 256 个字符之间的字符串,不能包含以下字符: <>"|?*
rescap3:ProcessorArchitecture 用于媒体内容的处理器体系结构。 可以是下列值之一的字符串值: x86x64armarm64neutral

子元素

子元素 描述
VideoRendererExtensionProfiles 包含视频呈现器配置文件的列表。
InputTypes 包含媒体输入子类型的列表。

父元素

父元素 描述
uap5:Extension 声明应用的扩展点。

注解

视频呈现器效果可以同时实现 VideoRendererExtensionProfilesInputTypes。 请注意,实现多个方案时,视频呈现器扩展配置文件优先。

示例

<uap5:Extension
    Category="windows.videoRendererEffect">
    <uap5:VideoRendererEffect
        DisplayName="Grey1&2"
        Description="Grey Video1&2" 
        ActivatableClassId="GreyEffect12.Grey"
        Path="Grey12.dll">
        <uap5:VideoRendererExtensionProfiles>
            <uap5:VideoRendererExtensionProfile>grey</uap5:VideoRendererExtensionProfile>
        </uap5:VideoRendererExtensionProfiles>
        <uap5:InputTypes>
            <uap5:InputType
                SubType="{2533FA52-3122-4cc1-9A10-78EBC4977CEF}"/>
        </uap5:InputTypes>
    </uap5:VideoRendererEffect>
</uap5:Extension>

要求

Namespace http://schemas.microsoft.com/appx/manifest/uap/windows10/5
Minimum OS Version Windows 10版本 1709 (内部版本 16299)