# Getting your RTMP streams indexed on Google

**URL:** https://community.wowza.com/t/getting-your-rtmp-streams-indexed-on-google/39044
**Category:** Wowza Developer Dojo
**Created:** [July 18, 2012, 2:34pm UTC](https://community.wowza.com/t/getting-your-rtmp-streams-indexed-on-google/39044 "2012-07-18T14:34:35Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Rick\_Scolaro](https://avatars.discourse-cdn.com/v4/letter/r/77aa72/32.png) [@Rick\_Scolaro](https://community.wowza.com/u/Rick_Scolaro)
#### Post date: [July 18, 2012, 2:34pm UTC](https://community.wowza.com/t/getting-your-rtmp-streams-indexed-on-google/39044/1 "2012-07-18T14:34:35Z")

</div>

Hello,

I thought I might take the time to share this with you, since I did tons of research to figure this out. I kept reading over and over how Google uses video sitemaps to index video content, but since we are using the Wowza Media Server to stream the videos via RTMP, there was no actual file you could list in Google when using the content\_loc tag (listed below):

```auto
<video:content_loc>http://www.example.com/video123.flv</video:content_loc>

```

After talking to Charlie at Wowza and also Ethan Longtail (Jeroen, creator of the JWPlayer) I tried a few different methods to tell Google to not only index the pages, but also list the videos on the page as well.

I discovered that by using Facebook Open Graph tags for this, you could get google to see your RTMP streams and put a thumbnail of your video in their index. You can check out the following link:

[Link to the Google search.](https://www.google.com/search?q=site:drelliotheller.com&tbo=p&tbm=vid&source=vgc&hl=en&aq=f#hl=en&tbm=vid&sclient=psy-ab&q=site:sarasota-cosmetic-surgery.com&oq=site:sarasota-cosmetic-surgery.com&gs_l=serp.12...0.0.0.64457.0.0.0.0.0.0.0.0..0.0...0.0...1c.cY5o7IhWocE&pbx=1&fp=1&biw=1920&bih=922&bav=on.2,or.r_gc.r_pw.r_qf.,cf.osb&cad=b&sei=kA4HUIieJcXz0gHJh5ijCA)

Here are the actual tags I used to make this work:

```auto
<meta property="og:type" content="movie" /> 
<meta property="og:video:height" content="240" /> 
<meta property="og:video:width" content="424" /> 
<meta property="og:video:type" content="application/x-shockwave-flash" />
<meta property="og:title" content="Hair Transplants" /> 
<meta property="og:description" content="Visit this page at http%3A%2F%2Fwww.sarasota-cosmetic-surgery.com%2Fhair-transplants.php<br />Hair transplants at Leonard A. Rubinstein, MD, PA Sarasota cosmetic surgery video" />
<meta property="og:image" content="http://www.ampstreaming.com/view/rubinstein/video/hair-transplants-preview.jpg" />
<meta property="og:video" content="http://www.sarasota-cosmetic-surgery.com/jwplayer/player-licensed.swf?&streamer=rtmp%3A%2F%2F74.208.104.107%2Frubinstein&file=hair-transplants.flv&autostart=false" /> 

```

As you can see, I use a urlencoded string for the og:video tag, which I do automatically by using the handy urlencode() function in PHP.

This worked for me, so I hope it works for someone else, too!

Rick

[Active Media Partners](http://www.activemediapartners.com) / [ActiveMD](http://www.activemd.net)

---

<div class="post-metadata">

### Author: ![Randall\_Auriemma](https://avatars.discourse-cdn.com/v4/letter/r/85e7bf/32.png) [@Randall\_Auriemma](https://community.wowza.com/u/Randall_Auriemma)
#### Post date: [July 20, 2012, 1:17am UTC](https://community.wowza.com/t/getting-your-rtmp-streams-indexed-on-google/39044/2 "2012-07-20T01:17:41Z")

</div>

Hi Rick,

Thanks for your contribution on how to have Google index your Wowza RTMP stream URLs. 😉 I’m sure others will appreciate your research.
