Reputation: 4768
I'm about to add structured data to a page type that contains video data, and after looking at the documentation at schema.org about VideoObject
I see that the field videoFrameSize
should be of type Text
.
Now I wonder if there is some standard or prefered format to supply this, like [height]x[width]
or something?
Upvotes: 2
Views: 170
Reputation: 190
Youtube declare
<div itemscope="" itemtype="http://schema.org/VideoObject">
<meta itemprop="playerType" content="HTML5 Flash">
<meta itemprop="width" content="480">
<meta itemprop="height" content="360">
Upvotes: 2