Schema markup for embedded videos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Schema Markup for embedded video --> | |
<div itemprop="video" itemscope itemtype="http://schema.org/VideoObject"> | |
<h2>Video: <span itemprop="name">Title</span></h2> | |
<meta itemprop="duration" content="T1M33S" /> | |
<meta itemprop="thumbnailUrl" content="thumbnail.jpg" /> | |
<meta itemprop="contentURL" content="http://www.example.com/video123.flv" /> | |
<meta itemprop="embedURL" content="http://www.example.com/videoplayer.swf?video=123" /> | |
<meta itemprop="uploadDate" content="2011-07-05T08:00:00+08:00" /> | |
<meta itemprop="expires" content="2012-01-30T19:00:00+08:00" /> | |
<meta itemprop="height" content="400" /> | |
<meta itemprop="width" content="400" /> | |
<object ...> | |
<param ...> | |
<embed type="application/x-shockwave-flash" ...> | |
</object> | |
<span itemprop="description">Video description</span> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment