EmbedWebVideo
The component for adding a web video from Dailymotion, Vimeo, or YouTube.
Declaration
object EmbedWebVideoProperties
| Name | Type | Description |
|---|---|---|
role Required | string | Always |
URL Required | uri | The URL of the embeddable video to display (the Dailymotion, Vimeo, or YouTube embed link). The embed A Dailymotion embed A Vimeo embed A YouTube embed |
accessibilityCaption | string | A caption that describes the content of the embedded web video. The text is used for VoiceOver. For more information about VoiceOver, see the Vision page in Accessibility. If you don’t provide |
anchor | Anchor | An object that defines vertical alignment with another component. |
animation | (ComponentAnimation | string("none")) | An object that defines an animation you apply to the component. Use the |
aspectRatio | number | The aspect ratio of the video: width divided by height. The aspect ratio determines the height of the video player. When this property is omitted, the video player will have a 16:9 aspect ratio (1.777), and videos with ratios other than 16:9 will automatically be letterboxed. |
behavior | (Behavior | string("none")) | An object that defines behavior for a component, like Parallax or Springy. Use the |
caption | string | A caption that describes the content of the embedded web video. This text is used by VoiceOver if |
conditional | (ConditionalComponent | [ConditionalComponent]) | An instance or array of component properties that you can apply conditionally, and the conditions that cause Apple News Format to apply them. |
explicitContent | boolean | A Boolean value that indicates that the embedded web video may contain explicit content. |
hidden | boolean | A Boolean value that determines whether the component is hidden. |
identifier | string | An optional unique identifier for this component. If you use |
layout | (ComponentLayout | string) | An inline If you don’t define layout, size and position are based on various factors, such as the device type, the length of the content, and the role of this component. |
style | (ComponentStyle | string | string("none")) | An inline The |
Mentioned in
Discussion
Use the embedwebvideo component to include a video from Dailymotion, Vimeo, or YouTube by specifying a URL for the video. Users can control playback and watch the video from inside the article. To include other types of videos in your article, use the Video component.
Example
{
"components": [
{
"role": "embedwebvideo",
"aspectRatio": 1.777,
"URL": "https://www.youtube.com/embed/_p8AsQhaVKI",
"caption": "Apple - WWDC 2015",
"accessibilityCaption": "See the announcement of Apple Music, get a preview of OS X v10.11 and iOS 9, and learn what’s next for Apple Watch and developers."
}
]
}