<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Leanin.com</title>
	<atom:link href="http://www.leanin.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.leanin.com</link>
	<description>Making video social again...</description>
	<lastBuildDate>Tue, 13 Sep 2011 20:46:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Adding Networks</title>
		<link>http://www.leanin.com/support/getting_started/adding_networks/</link>
		<comments>http://www.leanin.com/support/getting_started/adding_networks/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 15:23:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Support]]></category>

		<guid isPermaLink="false">http://www.leanin.com/?p=644</guid>
		<description><![CDATA[You can add and manage multiple networks on your LeanIn account! Whether you want to have multiple OVPs, or just want to better organize your data, a new network can be just the thing for you. Here&#8217;s how you add &#8230; <a href="http://www.leanin.com/support/getting_started/adding_networks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[You can add and manage multiple networks on your LeanIn account! Whether you want to have multiple OVPs, or just want to better organize your data, a new network can be just the thing for you. Here&#8217;s how you add one. <br/><br/>

<br />
<center>
<div>Step 1. Log In to the LeanIn Dashboard</div>
<img src="/support-images/adding_videos_1.png" alt="" title="Login to the LeanIn Dashboard" width="580" height="359" />
<hr />
<div>Step 2. Select the the &#8220;Add a Network&#8230;&#8221; Link </div>
<img src="/support-images/add_network_2.png" alt="" title="Select the the &quot;Add a Network...&quot; Link" width="580" height="416" />
<hr />
<div>Step 3. Enter the name and OVP (CMS) for your network. If you don&#8217;t have an OVP use the SocialPlayer CMS. Also, if your network adds any additional information like an API Token enter that information into the appropriate boxes. Finally, if the location of your API (Meta Data Service) is different from what is originally populated, you can change the Metadata Service URL. </div>
<img src="/support-images/add_network_3.png" alt="" title="Enter the name and OVP (CMS) for your network" width="580" height="416" />
<hr />
<div>Step 4. That&#8217;s it! If you see a message that says &#8220;Network Created Successfully&#8221;, you are done. Now add some <a href="/support/getting_started/adding_videos/">videos</a>. </div>
<img src="/support-images/add_network_4.png" alt="" title="That's it!" width="580" height="416" />
</center>
<hr />
<h3> Related Topics </h3>
<ul>
  <li><a href="/support/getting_started/adding_videos/">Adding Videos</a></li>
  <li><a href="/support/api/adding_videos/">Adding Videos using API</a></li>  
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.leanin.com/?feed=rss2&#038;p=644</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kaltura Integration without using the Dashboard</title>
		<link>http://www.leanin.com/support/getting_started/kaltura_no_dashboard/</link>
		<comments>http://www.leanin.com/support/getting_started/kaltura_no_dashboard/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 21:25:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Support]]></category>

		<guid isPermaLink="false">http://www.leanin.com/?p=628</guid>
		<description><![CDATA[Although it is simpler to embed your Kaltura videos using the dashboard, you can also embed videos directly, making larger scale automation a breeze. Javascript embed Step 1. Paste the following code into your HTML. &#60;div id="leanin-player"> &#60;script type="text/javascript" src="http://api.leanin.com/js/kalturaLoader.js">&#60;/script> &#8230; <a href="http://www.leanin.com/support/getting_started/kaltura_no_dashboard/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Although it is simpler to embed your Kaltura videos using the <a href="/support/getting_started/kaltura_guide/">dashboard</a>, you can also embed videos directly, making larger scale automation a breeze.
<br />
<hr />
<h3> Javascript embed </h3><br/>


<div>Step 1. Paste the following code into your HTML.</div><br/>
<center>
<code>
  <pre class="brush: html">
    &lt;div id="leanin-player">
      &lt;script type="text/javascript" src="http://api.leanin.com/js/kalturaLoader.js">&lt;/script>
      &lt;script type="text/javascript">	
        LeanInPlayer.width = 480;
        LeanInPlayer.height = 300;
        LeanInPlayer.apiKey = '{API_KEY}';
        LeanInPlayer.networkMediaID = '{ENTRY_ID}';
        LeanInPlayer.embed("leanin-player");
      &lt;/script>
   &lt;/div>		
 </pre>
</code></center><br/>
<hr />
<div>Step 2. Replace the placeholders {API_KEY} with your LeanIn API Key and {ENTRY_ID} with the Kaltura video&#8217;s entry_id. </div>
<hr />
<div>Step 3 (Optional). Customize the height and width. You can change the width and the height by modifying the attributes LeanInPlayer.width and LeanInPlayer.height (They can be any HTML values i.e. 50% or 250px).</div>
<hr />
<div>Step 4 (Optional). You can also customize where the player will appear on your page using this method. To do this, simply replace LeanInPlayer.embed(&#8220;leanin-player&#8221;) with LeanInPlayer.embed(&#8220;mydiv&#8221;), where mydiv is any div on your page. Through this you can separate the javascript code and the HTML code. </div>
<hr />
<h3> Related Topics </h3>
<ul>
  <li><a href="/support/dashboard/player_settings/">Player Settings</a></li>
  <li><a href="/support/getting_started/kaltura_guide/">Kaltura Integration Guide</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.leanin.com/?feed=rss2&#038;p=628</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kaltura Integration Guide</title>
		<link>http://www.leanin.com/support/getting_started/kaltura_guide/</link>
		<comments>http://www.leanin.com/support/getting_started/kaltura_guide/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 19:50:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.leanin.com/?p=611</guid>
		<description><![CDATA[This is a guide on integrating the LeanIn Social Player with Kaltura as a OVP, using the easy to use LeanIn Dashboard. Note: For advanced users who prefer to skip the dashboard and use Javascript embedding click here. Step 1. &#8230; <a href="http://www.leanin.com/support/getting_started/kaltura_guide/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[This is a guide on integrating the LeanIn Social Player with Kaltura as a OVP, using the easy to use LeanIn Dashboard. <br/><br/>Note: For advanced users who prefer to skip the dashboard and use Javascript embedding click <a href="/support/getting_started/kaltura_no_dashboard/">here</a>.<br/>
<hr />
<br />

<div>Step 1. Log In to the LeanIn Dashboard</div>
<center>
<img src="/support-images/login.png" alt="" title="Login to the LeanIn Dashboard" width="580" height="359" />
</center>
<hr />
<div>Step 2. Select your Kaltura Network </div>
<center>
<img src="/support-images/kaltura_integration_2.png" alt="" title="Select your Kaltura Network" width="580" height="439" />
</center>
<hr />
<div>Step 3. Click the &#8220;Settings&#8221; Link </div>
<center>
<img src="/support-images/kaltura_integration_3.png" alt="" title="Click the &quot;Settings&quot; Link" width="580" height="439" />
</center>
<hr />
<div>Step 4. Verify the Metadata Service URL. It should point to your Kaltura api followed by:
<code><pre class="brush: xml">?service=media&#038;action=get&#038;entryId</pre></code>
For reference, here is the default Metadata Service URL.
<code><pre class="brush: xml">http://www.kaltura.com/api_v3/?service=media&#038;action=get&#038;entryId=</pre></code>
Then click Videos. </div>
<center>
<img src="/support-images/kaltura_integration_4.png" alt="" title="Verify the Metadata Service URL then click Videos" width="580" height="439" />
</center>
<hr />
<div>Step 5. Click the &#8220;Add New Video&#8221; Link </div>
<center>
<img src="/support-images/kaltura_integration_5.png" alt="" title="Click the &quot;Add New Video&quot; Link" width="580" height="439" />
</center>
<hr />
<div>Step 6. Enter the Kaltura Media Id (entry_id). Also enter the landing address of any links (Optional).  Then click &#8220;Create Video&#8221;.</div>
<center>
<img src="/support-images/kaltura_integration_6.png" alt="" title="Enter the Kaltura entry_id and click &quot;Create Video&quot;" width="580" height="439" />
</center>
<hr />
<div>Step 7. Copy the code found in the box into your HTML page </div>
<center>
<img src="/support-images/kaltura_integration_7.png" alt="" title="Copy the code found in the box into your HTML page" width="580" height="439" />
</center>
<hr />
<div>Step 8. That&#8217;s it. Start Sharing! </div>
</center>
<hr />
<h3> Related Topics </h3>
<ul>
  <li><a href="/support/dashboard/player_settings/">Player Settings</a></li>
  <li><a href="/support/getting_started/kaltura_no_dashboard/">Kaltura Integration without using the Dashboard</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.leanin.com/?feed=rss2&#038;p=611</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedding YouTube Videos without Dashboard</title>
		<link>http://www.leanin.com/support/getting_started/youtube_no_dashboard/</link>
		<comments>http://www.leanin.com/support/getting_started/youtube_no_dashboard/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 15:07:05 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Support]]></category>

		<guid isPermaLink="false">http://www.leanin.com/?p=534</guid>
		<description><![CDATA[Although it is simpler to embed your YouTube videos using the dashboard, you can also embed videos directly, making larger scale automation a breeze. Here are two methods that you can use to embed your videos directly. Method #1: IFrame &#8230; <a href="http://www.leanin.com/support/getting_started/youtube_no_dashboard/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Although it is simpler to embed your YouTube videos using the <a href="/support/getting_started/embedding_youtube/">dashboard</a>, you can also embed videos directly, making larger scale automation a breeze.<br/><br/>

Here are two methods that you can use to embed your videos directly.
<br />
<hr />
<h3> Method #1: IFrame embed </h3><br/>


<div>Step 1. Paste the following code into your HTML. This code is the same embed code from the dashboard (without the video id and api key)</div><br/>
<center>
<code>
  <pre class="brush: xml">
    &lt;iframe 
      src="http://api.leanin.com/yt/?api_key={API_KEY}&#038;id={VIDEO_ID}"
      style="width:100%;height:100%;">
    &lt;/iframe>
  </pre>
</code>
</center><br/><br/>
<hr />
<div>Step 2. Replace the placeholders {API_KEY} with your LeanIn API Key and {VIDEO_ID} with the youtube video id. Alternatively you can replace the entire &#038;id={VIDEO_ID} with &#038;url={URL} where URL is that of the the YouTube Video</div>
<hr />
<div>Step 3 (Optional). Customize the style of the IFrame. You can change the width and the height just like you normally would (i.e. 50% or 250px).</div>
<hr />
<div>This is what you get:</div>
<center>
<iframe src="http://api.leanin.com/yt/?api_key=youtube&#038;id=lAl28d6tbko" style="width:640px;height:380px;"></iframe>
</center>
<hr />
<h3> Method #2: Javascript embed </h3><br/>


<div>Step 1. Paste the following code into your HTML. This code is the same embed code from the dashboard (without the video id and api key)</div><br/>
<center>
<code>
  <pre class="brush: html">
    &lt;div id="youtube-player">
      &lt;script type="text/javascript" src="http://api.leanin.com/js/youtubeLoader.js">&lt;/script>
        &lt;script type="text/javascript"> 
          LeanInPlayer.vidid = "{VIDEO_ID}";
          LeanInPlayer.apiKey = "{API_KEY}";
 
          LeanInPlayer.width = "100%";
          LeanInPlayer.height = "100%";

          LeanInPlayer.embed("youtube-player");
        &lt;/script>
      &lt;/div>
   </pre>
</code></center><br/><br/>
<hr />
<div>Step 2. Replace the placeholders {API_KEY} with your LeanIn API Key and {VIDEO_ID} with the youtube video id. A</div>
<hr />
<div>Step 3 (Optional). Customize the height and width. You can change the width and the height by modifying the attributes LeanInPlayer.width and LeanInPlayer.height (They can be any HTML values i.e. 50% or 250px).</div>
<hr />
<div>Step 4 (Optional). You can also customize where the player will appear on your page using this method. To do this, simply replace LeanInPlayer.embed(&#8220;youtube-player&#8221;) with LeanInPlayer.embed(&#8220;mydiv&#8221;), where mydiv is any div on your page. Through this you can separate the javascript code and the HTML code. </div>
<hr />
<div>This is what you get:</div>
  <center>
    <div id="youtube-player">
      <script type="text/javascript" src="http://api.leanin.com/js/youtubeLoader.js"></script>
      <script type="text/javascript"> 
      LeanInPlayer.vidid = "lAl28d6tbko";
      LeanInPlayer.apiKey = "youtube";

      LeanInPlayer.width = "640px";
      LeanInPlayer.height = "380px";

      LeanInPlayer.embed("youtube-player");
         </script>
    </div>
  </center>
<hr />
<h3> Related Topics </h3>
<ul>
  <li><a href="/support/dashboard/player_settings/">Player Settings</a></li>
  <li><a href="/support/getting_started/embedding_youtube/">Embedding YouTube videos</a></li>
  <li><a href="/support/api/adding_videos/">Adding Videos using API</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.leanin.com/?feed=rss2&#038;p=534</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Billing</title>
		<link>http://www.leanin.com/support/dashboard/billing</link>
		<comments>http://www.leanin.com/support/dashboard/billing#comments</comments>
		<pubDate>Wed, 24 Aug 2011 18:41:41 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Billing & Accounts]]></category>

		<guid isPermaLink="false">http://www.leanin.com/?p=515</guid>
		<description><![CDATA[Here&#8217;s how you do it: Step 1. Log In to the LeanIn Dashboard Step 2. Click on the &#8220;Billing&#8221; Link at the top of the Dashboard Your current bill will be displayed, showing the balance, bill date, and all charges &#8230; <a href="http://www.leanin.com/support/dashboard/billing">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>Here&#8217;s how you do it:</h3>
<br />
<center>
<div>Step 1. Log In to the LeanIn Dashboard</div>
<img src="/support-images/login.png" alt="" title="Login to the LeanIn Dashboard" width="580" height="385" />
<hr />
<div>Step 2. Click on the &#8220;Billing&#8221; Link at the top of the Dashboard</div>
<img src="/support-images/billing_main.png" alt="" title="Click the &quot;Billing&quot; Link" width="580" height="385" />
<hr />
<div>Your current bill will be displayed, showing the balance, bill date, and all charges and payments</div>
<img src="/support-images/billing_current.png" alt="" title="Current bill" width="580" height="385" />
<hr />
<div>To view a previous bill, choose &#8220;Bill History&#8221; on the left sidebar, and select the desired bill from the list</div>
<img src="/support-images/billing_history.png" alt="" title="Billing history" width="580" height="385" />
<hr />
<div>Your previous bill will be displayed, and can be seen on the left sidebar</div>
<img src="/support-images/billing_bill.png" alt="" title="Previous bill" width="580" height="385" />
</center>
<hr />
<h3> Related Topics </h3>
<ul>
  <li><a href="/support/dashboard/admin_users">Dashboard Admin Users</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.leanin.com/?feed=rss2&#038;p=515</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dashboard Admin Users</title>
		<link>http://www.leanin.com/support/dashboard/admin_users</link>
		<comments>http://www.leanin.com/support/dashboard/admin_users#comments</comments>
		<pubDate>Wed, 24 Aug 2011 15:32:37 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Dashboard]]></category>

		<guid isPermaLink="false">http://www.leanin.com/?p=485</guid>
		<description><![CDATA[Here&#8217;s how you do it: Step 1. Log In to the LeanIn Dashboard Step 2. Click the &#8220;Admin Users&#8221; Link Adding new user: * To add a new user, click the &#8220;Add new user&#8221; link and complete the form. Updating &#8230; <a href="http://www.leanin.com/support/dashboard/admin_users">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>Here&#8217;s how you do it:</h3>
<br />
<center>
<div>Step 1. Log In to the LeanIn Dashboard</div>
<img src="/support-images/login.png" alt="" title="Login to the LeanIn Dashboard" width="580" height="385" />
<hr />
<div>Step 2. Click the &#8220;Admin Users&#8221; Link</div>
<img src="/support-images/adminUser_main.png" alt="" title="Click &quot;Admin Users&quot; Link" width="580" height="385" />
<hr />
</center>
<h4>Adding new user:</h4>
<br />
<center>
<div>* To add a new user, click the &#8220;Add new user&#8221; link and complete the form.</div>
<hr />
</center>
<h4>Updating or deleting an existing user:</h4>
<br />
<center>
<div>Step 1. Select a user from the list</div>
<img src="/support-images/adminUser_list.png" alt="" title="Admin User list" width="580" height="385" />
<hr />
<div>Step 2. Update the desired fields in the form, and press the &#8220;Save&#8221; button </div>
<img src="/support-images/adminUser_edit.png" alt="" title="Update and press &quot;Save&quot;" width="580" height="385" />
<hr />
<div>* To delete a user, click the &#8220;Delete User&#8221; link at the bottom of the page.</div>
<hr />
</center>
<h4>Changing a user&#8217;s password:</h4>
<br />
<center>
<div>Step 1. Select a user from the list</div>
<img src="/support-images/adminUser_list.png" alt="" title="Admin User list" width="580" height="385" />
<hr />
<div>Step 2. Click the &#8220;Change Password&#8221; Link</div>
<img src="/support-images/adminUser_change_password.png" alt="" title="Click &quot;Change Password&quot;" width="580" height="385" />
<hr />
<div>Step 3. Enter the new password and press &#8220;Save&#8221;</div>
<img src="/support-images/adminUser_password_box.png" alt="" title="Enter new password" width="580" height="385" />
<hr />
</center>
<h3> Related Topics </h3>
<ul>
  <li><a href="/support/dashboard/billing">Billing</a></li>
  <li><a href="/support/dashboard/moderate_comments/">Moderating Video Comments</a></li>
  <li><a href="/support/dashboard/leanin_settings/">Change LeanIn Settings</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.leanin.com/?feed=rss2&#038;p=485</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Encoding Video</title>
		<link>http://www.leanin.com/support/getting_started/encoding-video/</link>
		<comments>http://www.leanin.com/support/getting_started/encoding-video/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 15:28:35 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Encoding & Hosting]]></category>
		<category><![CDATA[Support]]></category>

		<guid isPermaLink="false">http://www.leanin.com/?p=486</guid>
		<description><![CDATA[Step 1. Visit www.encoding.com and click on Quick Try Step 2. Select the &#8220;Upload&#8221; Radio Button and press &#8220;upload&#8221; Step 3. Select the Video from your local machine and click &#8220;Open&#8221; Step 4. Once the upload is finished, click &#8220;next&#8221; &#8230; <a href="http://www.leanin.com/support/getting_started/encoding-video/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<center>
  <div>Step 1. Visit <a href=http://www.encoding.com>www.encoding.com</a> and click on Quick Try </div>
  <img src="/support-images/video_encoding_1.png" alt="" title="Visit www.encoding.com and click on Quick Try" width="580" height="464" />
<hr />
<div>Step 2. Select the &#8220;Upload&#8221; Radio Button and press &#8220;upload&#8221; </div>
  <img src="/support-images/video_encoding_2.png" alt="" title="Select the &quot;Upload&quot; Radio Button and press &quot;upload&quot;" width="580" height="464" />
<hr />
<div>Step 3. Select the Video from your local machine and click &#8220;Open&#8221; </div>
  <img src="/support-images/video_encoding_3.png" alt="" title="Select the Video from your local machine and click &quot;Open&quot;" width="580" height="464" />
<hr />
<div>Step 4. Once the upload is finished, click &#8220;next&#8221; </div>
  <img src="/support-images/video_encoding_4.png" alt="" title="Once the upload is finished, click &quot;next&quot;" width="580" height="464" />
<hr />
<div>Step 5. Choose &#8220;Mpeg 4&#8243; from the &#8220;Select your video format&#8221; Menu</div>
  <img src="/support-images/video_encoding_5.png" alt="" title="Choose &quot;Mpeg 4&quot; from the &quot;Select your video format&quot; Menu" width="580" height="464" />
<hr />
<div>Step 6. Select the &#8220;Email link&#8221; Radio Button and Enter your Email. Then hit Next. </div>
  <img src="/support-images/video_encoding_6.png" alt="" title="Select the &quot;Email link&quot; Radio Button and Enter your Email. Then hit Next." width="580" height="464" />
<hr />
<div>Step 7. Enter your email again and check off the &#8220;I agree&#8221; checkbox. Then hit finish. </div>
  <img src="/support-images/video_encoding_7.png" alt="" title="nter your email again and check off the &quot;I agree&quot; checkbox. Then hit finish." width="580" height="464" />
<hr />
<div>Step 8. Follow the link in your e-mail for encoding.com to begin the encoding </div>
  <img src="/support-images/video_encoding_9.png" alt="" title="Follow the link in your e-mail for encoding.com to begin the encoding" width="580" height="464" />
<hr />
<div>Step 9. Once the encoding is finished, you should receive an e-mail from encoding.com again. Select the following Encoding Output Destination: from the email:</div> <br/>
<code>
   <pre class="brush: xml">
     Encoding Output Destination: 

http://encoding.com.result.s3.amazonaws.com/encoding3a25adc4ba06f92b2b32589a137c4901_LeanIn%2BIntro%2BVideo_18388813.mp4

   </pre>
</code><br /><br />
<div>
     This URL is your Video URL. You can now add it to the LeanIn System <a href="/support/getting_started/adding_videos/">(how?)</a>.
</div>

</center>
<hr />
<h3> Related Topics </h3>
<ul>
  <li><a href="/support/getting_started/adding_videos/">Adding Videos</a></li>
  <li><a href="/support/api/adding_videos/">Adding Videos using API</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.leanin.com/?feed=rss2&#038;p=486</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://encoding.com.result.s3.amazonaws.com/encoding3a25adc4ba06f92b2b32589a137c4901_LeanIn%2BIntro%2BVideo_18388813.mp4" length="3966049" type="video/mp4" />
		</item>
		<item>
		<title>Brightcove Integration Guide</title>
		<link>http://www.leanin.com/getting_started/brightcove_guide/</link>
		<comments>http://www.leanin.com/getting_started/brightcove_guide/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 21:19:21 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Support]]></category>

		<guid isPermaLink="false">http://www.leanin.com/?p=468</guid>
		<description><![CDATA[Step 1. Login to your account on BrightCove’s Video cloud http://my.brightcove.com/ and go to the &#8220;Publishing&#8221; Module Step 2. Create a new player template for LeanIn Step 3. Name your player Step 4. Set the dimensions Step 5 &#038; 6. &#8230; <a href="http://www.leanin.com/getting_started/brightcove_guide/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<center>
  <div>Step 1. Login to your account on BrightCove’s Video cloud <a href="http://my.brightcove.com/">http://my.brightcove.com/</a> and go to the &#8220;Publishing&#8221; Module </div>
  <img src="/support-images/brightcove_integration_1.png" alt="" title="Login to your account on BrightCove’s Video cloud http://my.brightcove.com/ and go to the &quot;Publishing&quot; Module" width="580" height="359" />
<hr />

<div>Step 2. Create a new player template for LeanIn </div>
  <img src="/support-images/brightcove_integration_2.png" alt="" title="Create a new player template for LeanIn" width="580" height="359" />
<hr />

<div>Step 3. Name your player </div>
<div>Step 4. Set the dimensions </div>
  <img src="/support-images/brightcove_integration_3-6.png" alt="" title="Step 3-6" width="580" height="359" />
<div>Step 5 &#038; 6. Paste LeanIn&#8217;s template (found below) and Save </div>
<code>
   <pre class="brush: xml">
     &lt;Runtime>
       &lt;Theme name="Deluxe" style="Dark" />
       &lt;Layout backgroundColor="#000000">
         &lt;VBox padding="0">
           &lt;VideoDisplay id="videoPlayer"/>
           &lt;MediaControls id="controls" height="29" backgroundColor="#000000"/>
         &lt;/VBox>
       &lt;/Layout>
     &lt;/Runtime>
   </pre>
</code>
<hr />

<div>Step 7. Create a player with the newly created template </div>
  <img src="/support-images/brightcove_integration_7.png" alt="" title="Create a player with the newly created template" width="580" height="359" />
<hr />

<div>Step 8. Name the player </div>
<div>Step 9 &#038; 10. Pick the newly created template and Save </div>
  <img src="/support-images/brightcove_integration_8-10.png" alt="" title="Step 8-10" width="580" height="359" />
<hr />

<div>Step 11. Double-click on the newly created player </div>
  <img src="/support-images/brightcove_integration_11.png" alt="" title="Double-click on the newly created player" width="580" height="359" />
<hr />

<div>Step 12. Enable API access </div>
  <img src="/support-images/brightcove_integration_11.png" alt="" title="Enable API access" width="580" height="359" />
<hr />

<div>Step 13 &#038; 14. Paste Leanin&#8217;s Plugin URL &#038; Click Add </div>
  <img src="/support-images/brightcove_integration_13-14.png" alt="" title="Paste Leanin's Plugin URL &#038; Click Add" width="580" height="359" />

  <div>The URL (case sensitive) for Major League Gaming is:</div>
  <code><pre class="brush: xml">http://api.leanin.com/plugin/ad2342b123.swf</pre></code>
<hr />

<div>Step 15. Disable Overlay Menu </div>
<div>Step 16 &#038; 17. Disable basic viral buttons &#038; Save </div>
  <img src="/support-images/brightcove_integration_15-17.png" alt="" title="Enable API access" width="580" height="359" />
<hr />

<div>Step 18. Update your site’s crossdomain.xml to allow swf files to load from the BrightCove and LeanIn domains by adding the following lines: </div>

<code>
  <pre class="brush: xml">
     &lt;allow-access-from domain="*.brightcove.com" /> 
     &lt;allow-access-from domain="*.leanin.com" />
  </pre>
</code>
<hr />

<div>Step 19. Finally, publish content hosted on BrightCove like you usually do with the newly created player.  </div>

If you need assistance along the way, feel free to <a href="/contact">contact us</a>.
</center>]]></content:encoded>
			<wfw:commentRss>http://www.leanin.com/?feed=rss2&#038;p=468</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moderating Viewer Comments</title>
		<link>http://www.leanin.com/support/dashboard/moderate_comments/</link>
		<comments>http://www.leanin.com/support/dashboard/moderate_comments/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 21:33:45 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Dashboard]]></category>

		<guid isPermaLink="false">http://www.leanin.com/?p=457</guid>
		<description><![CDATA[Here&#8217;s how you do it: Step 1. Log In to the LeanIn Dashboard Step 2. Select one of your networks, and click the &#8220;Moderation&#8221; Link Step 3. Choose either the &#8220;Moderated&#8221; tab to view previously moderated comments, or use the &#8230; <a href="http://www.leanin.com/support/dashboard/moderate_comments/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>Here&#8217;s how you do it:</h3>
<br />
<center>
<div>Step 1. Log In to the LeanIn Dashboard</div>
<img src="/support-images/login.png" alt="" title="Login to the LeanIn Dashboard" width="580" height="385" />
<hr />
<div>Step 2. Select one of your networks, and click the &#8220;Moderation&#8221; Link </div>
<img src="/support-images/moderation_main.png" alt="" title="Click the &quot;Moderation&quot; Link" width="580" height="385" />
<hr />
<div>Step 3. Choose either the &#8220;Moderated&#8221; tab to view previously moderated comments, or use the &#8220;Unmoderated&#8221; tab to moderate new comments for the first time </div>
<img src="/support-images/moderation.png" alt="" title="Moderated Tab" width="580" height="385" />
<hr />
<div>Step 4. Select whether a particular comment is Visible or Hidden </div>
<img src="/support-images/moderation_setting.png" alt="" title="Show or Hide each comment" width="580" height="385" />
<hr />
<div>* Hidden comments will appear grayed out in the comment list to be easily identified</div>
<img src="/support-images/moderation_hidden.png" alt="" title="Show or Hide each comment" width="580" height="385" />
</center>
<hr />
<div>Notes: 
<ul>
  <li>Moderation must first be Enabled in the <a href="/support/dashboard/leanin_settings">Leanin Settings</a></li>
  <li>Comments will only be visible in the video once they have been moderated and set to Visible</li>
</ul>
</div>
<hr />
<h3> Related Topics </h3>
<ul>
  <li><a href="/support/dashboard/admin_users">Dashboard Admin Users</a></li>
  <li><a href="/support/dashboard/leanin_settings/">Changing Leanin Settings</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.leanin.com/?feed=rss2&#038;p=457</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leanin Analytics</title>
		<link>http://www.leanin.com/dashboard/leanin_analytics/</link>
		<comments>http://www.leanin.com/dashboard/leanin_analytics/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 21:24:59 +0000</pubDate>
		<dc:creator>webmaster</dc:creator>
				<category><![CDATA[Dashboard]]></category>

		<guid isPermaLink="false">http://www.leanin.com/?p=453</guid>
		<description><![CDATA[Here&#8217;s how you do it: Step 1. Log In to the LeanIn Dashboard Step 2. Select one of your networks, and click the &#8220;Analytics&#8221; Link Browse the great analytics Leanin offers for your network! Related Topics PDashboard Admin Users Moderating &#8230; <a href="http://www.leanin.com/dashboard/leanin_analytics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>Here&#8217;s how you do it:</h3>
<br />
<center>
<div>Step 1. Log In to the LeanIn Dashboard</div>
<img src="/support-images/login.png" alt="" title="Login to the LeanIn Dashboard" width="580" height="385" />
<hr />
<div>Step 2. Select one of your networks, and click the &#8220;Analytics&#8221; Link </div>
<img src="/support-images/analytics_main_small.png" alt="" title="Click the &quot;Analytics&quot; Link" width="580" height="385" />
<hr />
<div>Browse the great analytics Leanin offers for your network! </div>
<img src="/support-images/analytics_small.png" alt="" title="Analytics" width="580" height="385" />
</center>
<hr />
<h3> Related Topics </h3>
<ul>
  <li><a href="/support/dashboard/admin_users">PDashboard Admin Users</a></li>
  <li><a href="/support/dashboard/moderate_comments/">Moderating User Comments</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.leanin.com/?feed=rss2&#038;p=453</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
