Link to home
Start Free TrialLog in
Avatar of budsfever
budsfever

asked on

XML VIDEO SPECFIC SITE MAP FOR GOOGLE

I am working on setting up a video site map in xml format for google and I fould this example online (Code Attached). I think I understand most of what I am looking at but I do have a question about line 7 the code references

##<video:player_loc allow_embed="yes" autoplay="ap=1">http://www.site.com/videoplayer.swf?video=123</video:player_loc>##

Full Code and Tag Definitions
http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=80472#2

In this code after http://www.site.com/videoplayer.swf it is making a reference to a file but Im not sure what it means.
I am thinking that after the question mark would be "Directory""File.flv"
Example:
<video:player_loc allow_embed="yes" autoplay="ap=1">http://www.buyandsellcemeteryplots.com/video-player-test-1/player.swf?www.buyandsellcemeteryplots.com/video-player-test-1/=MRSS-10.flv</video:player_loc>##
Can some one please point me in the right direction?

Shawn

<url> 
  <loc>http://www.example.com/videos/some_video_landing_page.html</loc>
    <video:video>     
      <video:content_loc>http://www.site.com/video123.flv</video:content_loc>
      <video:player_loc allow_embed="yes" autoplay="ap=1">http://www.site.com/videoplayer.swf?video=123</video:player_loc>
      <video:thumbnail_loc>http://www.example.com/thumbs/123.jpg</video:thumbnail_loc>
      <video:title>Grilling steaks for summer</video:title>  
      <video:description>Get perfectly done steaks every time</video:description>
      <video:rating>4.2</video:rating>
      <video:view_count>12345</video:view_count>
      <video:publication_date>2007-11-05T19:20:30+08:00.</video:publication_date>
      <video:expiration_date>2009-11-05T19:20:30+08:00.</video:expiration_date>
      <video:tag>steak</video:tag>
      <video:tag>meat</video:tag>
      <video:tag>summer</video:tag>
      <video:category>Grilling</video:category>
      <video:family_friendly>yes</video:family_friendly>
      <video:expiration_date>2009-11-05T19:20:30+08:00</video:expiration_date>
      <video:duration>600</video:duration>
    </video:video>
</url>
</urlset>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of budsfever
budsfever

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial