SmartStoreNET icon indicating copy to clipboard operation
SmartStoreNET copied to clipboard

Video is not indexed in the product gallery by Google

Open pineportal opened this issue 4 years ago • 4 comments

pineportal avatar Feb 27 '22 09:02 pineportal

Hello pineportal, please provide a sample url, you can mail it to me mueller at smartstore com

stefanmuellerdo avatar Mar 15 '22 09:03 stefanmuellerdo

for example:

i am upload movie in live-demo. image

google can not index image

There is a need to add an schema Example Video Embed with Schema Markup

<div itemscope itemtype="http://schema.org/VideoObject">
  <h2>Video: <span itemprop="name">Title</span></h2>
  <meta itemprop="thumbnailURL" content="thumbnail.jpg" />
  <meta itemprop="embedURL"
    content="http://www.example.com/videoplayer.swf?video=123" />
  <object ...>
    <embed type="application/x-shockwave-flash" ...>
  </object>
  <span itemprop="description">Video description</span>
</div>

pineportal avatar Mar 16 '22 11:03 pineportal

image

i am test schema.

<video class="embed-responsive embed-responsive-16by9" controls="" poster="//www.site.com/11.mp4?size=600" itemscope="" itemprop="VideoObject" itemtype="https://schema.org/VideoObject" muted="" preload="none"> <img class="file-img">
	<meta itemprop="contentUrl" content="https://www.site.com/11.mp4">
	<meta itemprop="name" content="">
	<meta itemprop="uploadDate" content="2021-12-15T08:00:00+03:30">
	<meta itemprop="thumbnailUrl" content="//www.site.com/media/339/catalog/11.mp4?size=250">
	<meta itemprop="description" content="">
	<source src="https://www.site.com/11.mp4" type="video/mp4">
</video>

pineportal avatar Mar 17 '22 21:03 pineportal

I did not mean video tags.

add this meta.

        <meta itemprop="embedURL" content="https://www.site.com/11.mp4">
	<meta itemprop="name" content="">
	<meta itemprop="uploadDate" content="2021-12-15T08:00:00+03:30">
	<meta itemprop="thumbnailUrl" content="//www.site.com/media/339/catalog/11.mp4?size=250">
	<meta itemprop="description" content="">

uploadDate format iso 8601

pineportal avatar Mar 18 '22 10:03 pineportal