<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:yt="http://gdata.youtube.com/schemas/2007" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
   <channel>
      <title>RADVISION Blogs</title>
      <description>Aggregation of all blog feeds on the RADVISION blogs network (http://blog.radvision.com).</description>
      <link>http://pipes.yahoo.com/pipes/pipe.info?_id=QjpeGDCy3RGMc_fHpgt1Yg</link>
      <pubDate>Thu, 08 Jan 2009 21:38:46 -0800</pubDate>
      <generator>http://pipes.yahoo.com/pipes/</generator>
      <image><link>http://www.radvision.com/</link><url>http://www.radvision.com/radvision/Images//design/radvision.gif</url></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/rvblogs" type="application/rss+xml" /><feedburner:emailServiceId>1590810</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><item>
         <title>No Need to Program Perfection [Code of Contact]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/506241817/</link>
         <description>Being perfect is hard work. Being perfectly efficient is twice as hard, even impossible at times. However, being mostly efficient, well, that just takes some thought and planning.
Types of random algorithms
There are random algorithms that always produce a correct result called Las Vegas Algorithms. There are Monte Carlo algorithms, random algorithms that have a margin [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/codeofcontact"&gt;Code of Contact&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/codeofcontact/?p=59</guid>
         <pubDate>Thu, 08 Jan 2009 05:58:59 -0800</pubDate>
         <content:encoded><![CDATA[<p>Being perfect is hard work. Being perfectly efficient is twice as hard, even impossible at times. However, being mostly efficient, well, that just takes some thought and planning.</p>
<h3>Types of random algorithms</h3>
<p>There are random algorithms that always produce a correct result called <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Las_Vegas_algorithm">Las Vegas Algorithms</a>. There are <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Monte_Carlo_algorithm">Monte Carlo algorithms</a>, random algorithms that have a margin for error that can be made as small as required (one of my lecturers at the university proclaimed that once you reach 2<sup>-300</sup> - usually not very hard, you have a better chance to locate a specific atom in the universe). Both of these use some random way of accessing the problem. I though, would like to discuss statistical algorithms, which are algorithms that do not use random number generators, but instead rely on the input to be sufficiently random. They may not always produce the best result, but in the long run, they produce good enough results, especially since they are far more efficient than the perfect algorithm.</p>
<p>Take sorting a stream of random elements for example. Sorting <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Qsort">efficiently</a> takes a little memory overhead and can be done with logarithmic efficiency. What if we don&#8217;t really need perfect sorting? What if we just require that the smaller elements be separated from the others? That can be done with constant efficiency - just deciding if the element is one of the smaller ones or not. Of course, we need to decide where we draw the line between small and large elements. We could do so statistically, for instance, start with some arbitrary number and for every element processed, add one if it is larger than the limit and subtract four if it is smaller than the limit. After some time, we will be very close to separating the smaller 20% of the numbers. Moreover, the limit will adapt to changes in the input: if we suddenly start getting larger or smaller elements, the limit will shift to its steady state: 20% of the time it will be lowered by four and 80% of the time it will be raised by one, hovering around the same number.</p>
<p>The solution displayed above is not correct all the time, but if the input is random enough, it will give good results most of the time. The trick when using statistical algorithms is to accumulate the good results and try to reiterate the incorrect results. In the best case, an accumulation of good results that can be detected and separated, allowing the algorithm to improve its work. Such is the case of memory fragmentation.</p>
<h3>Efficient Allocation</h3>
<p>One of our protocol stacks here at RADVISION, <a rel="nofollow" target="_blank" href="http://www.radvision.com/Products/Developer/Protocol/MEGACO/">MEGACO</a>, suffered from a memory fragmentation problem. It uses dynamic memory allocation, and in some of the operating systems, allocating and freeing small memory sizes degrades performance over time. It became necessary to manage the way memory is allocated. We created a memory manager that allocated large memory sections (we called them &#8220;pages&#8221;) and divided each page to smaller allocations (called &#8220;blocks&#8221;). Memory allocations were rounded up to the nearest block size and when pages were filled up, new pages were allocated.</p>
<p>The problem was with freeing memory: we could only free a page when all the blocks in it were freed. At the same time, we needed to allocate memory from the same pages. A perfectly correct algorithm would need to keep a sorted list of the pages by their fullness, and allocate from the fullest page only, or perhaps consider the relative allocation times. These lists should be resorted on each allocation and freeing of a memory block, hindering efficiency. We decided to create an algorithm that would be mostly correct, but much more efficient. We divide the pages into four bins by fullness, and we allocate memory from the bin with fullest pages first. We assume that memory freed could belong to any page, so by allocating memory from the fullest pages, we allow pages that are vacant to free up until they are empty and can be released. The division to bins then helps memory pages that are partially vacant to continue the process until freeing up completely.</p>
<p align="center"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/mousyboywithglasses/399783713/sizes/m/"><img class="alignnone" src="http://farm1.static.flickr.com/129/399783713_f27ddfe821.jpg" alt="" width="500" height="213"/></a></p>
<p>Let&#8217;s study the algorithm: memory load rises, so more memory is allocated. We keep allocating pages and allocating from them. Each new page starts at the freest bin and moves to the fullest. Then we stay around the peak load for a while and memory is freed and allocated constantly. Almost all the pages will remain in the fullest bin. Now the load decreases somewhat so pages start freeing up. As soon as a page drops from the fullest bin to the not-so-full bin, no allocations will be made from it - there are enough pages in the full bin. This is what I called &#8220;separation of good results&#8221; earlier. Pages that dropped to a lower bin should keep moving through the bins as old memory is freed and new memory is allocated only from the full bin. At this stage, there is a significant memory overhead, but this would be the case even if our algorithm used the best predictions, and in the long run, our algorithm will achieve almost the same results.</p>
<h3>Similar Applications</h3>
<ul>
<li> <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Branch_prediction">Branch prediction schemes</a></li>
<li> <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Reinforcement_learning">Reinforcement Learning</a></li>
<li> <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Optimal_control">Optimal Control</a></li>
</ul>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/codeofcontact">Code of Contact</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/codeofcontact/2008/10/29/the-zen-pointer/" title="The Zen Pointer (October 29, 2008)">The Zen Pointer</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/codeofcontact/2008/11/05/the-void-pointer-take-2/" title="The Void Pointer (November 5, 2008)">The Void Pointer</a> (0)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/CodeOfContact?a=FDkLOa.P"><img src="http://feeds.radvision.com/~f/CodeOfContact?i=FDkLOa.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/CodeOfContact?a=qDG5sH.p"><img src="http://feeds.radvision.com/~f/CodeOfContact?i=qDG5sH.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/CodeOfContact?a=VjXB0B.p"><img src="http://feeds.radvision.com/~f/CodeOfContact?i=VjXB0B.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/CodeOfContact?a=syOmpo.P"><img src="http://feeds.radvision.com/~f/CodeOfContact?i=syOmpo.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/CodeOfContact?a=cLYoaH.P"><img src="http://feeds.radvision.com/~f/CodeOfContact?i=cLYoaH.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/CodeOfContact?a=iBr8in.p"><img src="http://feeds.radvision.com/~f/CodeOfContact?i=iBr8in.p" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/CodeOfContact/~4/506214624" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/506241817" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FCodeOfContact%2F%7E3%2F506214624%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/CodeOfContact/~3/506214624/</feedburner:origLink></item>
      <item>
         <title>When Will Video Telephony Take Center Stage? [VoIP Survivor]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/506288074/</link>
         <description>CES starts today, and I promise I will be writing about it in a few days. For now, I&amp;#8217;d like to take up the question of when video telephony will take center stage. We&amp;#8217;ve been led to believe that video calling is the best next thing. It hasn&amp;#8217;t really happened, although there are signs of oil. [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor"&gt;VoIP Survivor&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/voipsurvivor/?p=149</guid>
         <pubDate>Thu, 08 Jan 2009 05:44:53 -0800</pubDate>
         <content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2009/01/05/heading-to-ces-2009-las-vegas-here-i-come/">CES starts today</a>, and I promise I will be writing about it in a few days. For now, I&#8217;d like to take up the question of when video telephony will take center stage.</p>
<p style="text-align:center;"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/anirudhkoul/2045735047/"><img class="alignnone" src="http://farm3.static.flickr.com/2382/2045735047_b864159e51.jpg?v=0" alt="" width="500" height="375"/></a></p>
<p>We&#8217;ve been led to believe that <a rel="nofollow" target="_blank" href="http://blog.tmcnet.com/talking-video/2008/12/does-video-telephony-require-a-killer-application.html">video calling is the best next thing</a>. It hasn&#8217;t really happened, although there are signs of oil. To understand why video calling isn&#8217;t catching yet, we must look at the main problem today that hinders its growth - it&#8217;s not bandwidth, It&#8217;s not even money. It&#8217;s connectivity. Pure and simple.</p>
<p>If you look at today&#8217;s video telephony deployments, they are enterprise centric and they usually happen in large, multi-national enterprises, where you have multiple office locations spread all over the world. In these cases, there is an IT team that takes care of the video telephony network and equipment in the company - someone to call whenever something doesn&#8217;t work.</p>
<p>I know that because I actually work in such an organization. We sell equipment to these companies, but to be honest - I have never ever had a video call with people outside of RADVISION - unless they were located in a RADVISION office elsewhere.</p>
<p>And why is that? Is it because firewall traversal is a pain for video calls?</p>
<p>Or is it because there&#8217;s a dial plan issue, where dialing others is a pain?</p>
<p>It&#8217;s probably a bit of both, and until these are fixed, video is not going to succeed: there are a lot of small and medium enterprises out there that have no use for video telephony simply because they have a single office - it doesn&#8217;t make sense to call within the office. But - if you can come to such an enterprise, and offer a video service that allows them to communicate better with their suppliers or customers - how many of them wouldn&#8217;t want to use such a service (cost aside)?</p>
<p>Solutions such as <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/11/06/high-definition-desktop-video-just-try-it/">SCOPIA Desktop ARE solving this problem</a>. They do that by offering a thin client that can be used by virtually anyone with a PC and a webcam, and it doesn&#8217;t matter if he is part of the organization that deploys the solution or not.</p>
<p>The missing links at the moment are the room systems, which still dominate the video communications market - they need to catch up with the desktop solutions and provide better connectivity out of the organizations they cater.</p>
<p>Once that happens - video will become the default communications tool of SMBs.</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor">VoIP Survivor</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/12/04/the-scopia-desktop-wordgame/" title="The SCOPIA Desktop Wordgame (December 4, 2008)">The SCOPIA Desktop Wordgame</a> (0)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=QjoeQX.P"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=QjoeQX.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=BNUQba.P"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=BNUQba.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=pQqaFP.p"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=pQqaFP.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=ZIQa1v.p"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=ZIQa1v.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=laKQhM.p"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=laKQhM.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=WZRzxK.P"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=WZRzxK.P" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VoipSurvivor/~4/506208484" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/506288074" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVoipSurvivor%2F%7E3%2F506208484%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VoipSurvivor/~3/506208484/</feedburner:origLink></item>
      <item>
         <title>Moving On… From D to R [Video Over Enterprise]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/506163809/</link>
         <description>If you have been reading this blog, you know that I have a thing for technology. I often ponder about the present and the future, and I like to share my views on the market and technology with others.
This may come as a surprise, but for the past couple of years I have been quite [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise"&gt;Video over Enterprise&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/videooverenterprise/?p=86</guid>
         <pubDate>Thu, 08 Jan 2009 03:14:23 -0800</pubDate>
         <content:encoded><![CDATA[<p>If you have been reading this blog, you know that I have a thing for technology. I often ponder about the present and the future, and I like to share my views on the market and technology with others.</p>
<p>This may come as a surprise, but for the past couple of years I have been quite focused on &#8220;now&#8221; and on products in my &#8220;day job&#8221;, as I was busy leading teams of developers developing RADVISION&#8217;s video bridging technology.</p>
<p>I was part of the R&amp;D organization, but as in most hi-tech companies I was mainly doing D - development - and haven&#8217;t really gotten to the R part. I was always working on &#8220;now&#8221;, trying to get things done and get products out as fast as possible (preferably yesterday).</p>
<p>I guess a change was due.</p>
<p style="text-align:center;"><a rel="nofollow" target="_blank" href="http://flickr.com/photos/sagman/3170979843/"><img class="alignnone" src="http://farm4.static.flickr.com/3104/3170979843_606a18553f.jpg?v=0" alt="" width="500" height="375"/></a></p>
<p>Well, as you can see from the picture above, a change has indeed come. And I am off - off to a new position, that is.</p>
<p>In my new role, I will be researching technologies in the CTO&#8217;s office, responsible for the evaluation and the development of them, as well as assimilating those into the R&amp;D work. Yep, I&#8217;m talking research here. Research with a capital R.</p>
<p>Some consider this new role as &#8220;moving up&#8221; (I&#8217;m actually moving from the 8<sup>th</sup> floor to the 9<sup>th</sup>). Some call it &#8220;moving aside&#8221;. I prefer to think of it as &#8220;moving on&#8221;. I just hope I make as much difference, learn as much, and enjoy myself as much as I did in my previous role.</p>
<p>Wish me luck!</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise">Video over Enterprise</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/06/10/you-are-where-your-presence-information-says-you-are/" title="You are where your presence information says you are (June 10, 2008)">You are where your presence information says you are</a> (1)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/11/25/with-john-the-plumber-working-on-the-pipes-video-conferencing-will-flow/" title="With John the Plumber Working On the Pipes, Video Conferencing Will Flow (November 25, 2008)">With John the Plumber Working On the Pipes, Video Conferencing Will Flow</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/07/08/video-conferencing-in-my-hotel-room-nothing-to-write-home-about/" title="Video conferencing in my hotel room &#x002013; nothing to write home about, I&#8217;m afraid (July 8, 2008)">Video conferencing in my hotel room – nothing to write home about, I&#8217;m afraid</a> (3)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2009/01/05/video-conferencing-awaits-the-third-wave/" title="Video Conferencing Awaits The Third Wave (January 5, 2009)">Video Conferencing Awaits The Third Wave</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/06/03/the-babel-fish-proves-video-conferencing-does-exist/" title="The Babel fish proves video conferencing does exist. QED. (June 3, 2008)">The Babel fish proves video conferencing does exist. QED.</a> (2)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=Kj3WEV.P"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=Kj3WEV.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=JPQrHT.P"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=JPQrHT.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=fLENIJ.p"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=fLENIJ.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=3F2f4X.p"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=3F2f4X.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=0LmkpD.p"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=0LmkpD.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=jN01JY.P"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=jN01JY.P" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VideoOverEnterprise/~4/506111069" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/506163809" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVideoOverEnterprise%2F%7E3%2F506111069%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VideoOverEnterprise/~3/506111069/</feedburner:origLink></item>
      <item>
         <title>Video Conferencing Awaits The Third Wave [Video Over Enterprise]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/503632356/</link>
         <description>Everyone seems to be talking about Nick Carr&amp;#8217;s essay &amp;#8220;Is Google Making Us Stupid?&amp;#8220;.
I have an answer I strongly believe in (later - I promise!), but what troubles me more is a related question I hear often - &amp;#8220;Is Video Conferencing Making Us Less Communicative?&amp;#8220;.
The essential theme in Nick&amp;#8217;s essay, in case you haven&amp;#8217;t read [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise"&gt;Video over Enterprise&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/videooverenterprise/?p=85</guid>
         <pubDate>Mon, 05 Jan 2009 09:56:23 -0800</pubDate>
         <content:encoded><![CDATA[<p>Everyone seems to be talking about Nick Carr&#8217;s essay &#8220;<a rel="nofollow" target="_blank" href="http://www.theatlantic.com/doc/200807/google">Is Google Making Us Stupid?</a>&#8220;.<br />
I have an answer I strongly believe in (later - I promise!), but what troubles me more is a related question I hear often - &#8220;<strong>Is Video Conferencing Making Us Less Communicative?</strong>&#8220;.</p>
<p>The essential theme in Nick&#8217;s essay, in case you haven&#8217;t read it or <a rel="nofollow" target="_blank" href="http://www.amazon.com/exec/obidos/ASIN/0393062287/amazingbooks0b0">his new book</a> (which the essay is built on), is that technologies change us, often in ways we can neither anticipate nor control. Therefore, we should be careful in adopting all new technologies, especially if they can truly change the way we live our lives.</p>
<p align="center"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/kirstendanley/2597084747/"><img class="alignnone" src="http://blog.radvision.com/images/2009/20090105-VideoOverEnterprise-Google-making-us-stupid.jpg" alt="" width="450" height="338"/></a></p>
<p>I LOVE technology, as I have already admitted <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/10/15/technology-can-overcome-poverty-ask-me-how/">here</a>, but I have no problem with technology criticism, which probably has existed since <a rel="nofollow" target="_blank" href="http://www.ideafinder.com/history/inventions/wheel.htm">the first technology</a> (&#8221;Is The Wheel Making Us Lazier?&#8221;). One of the most famous tech critics I know, who is a very interesting writer and someone who inspired Nick Carr, is <a rel="nofollow" target="_blank" href="http://www.neilpostman.org/">Neil Postman</a>, author of &#8220;<a rel="nofollow" target="_blank" href="http://www.amazon.com/o/ASIN/0679745408/181-4933385-2676861?SubscriptionId=0EMV44A9A5YT1RVDGZ82">Technopoly: The Surrender of Culture to Technology</a>&#8220;.</p>
<p>Postman claims that new technologies are not critiqued enough, because we live in a state of &#8220;Technopoly&#8221;, where technology is defecated and becomes THE culture, instead of offering tools for creating culture or at most play a central role in the culture.</p>
<h3>Psychological Barriers? Give Me a Break!</h3>
<p>Postman&#8217;s criticism is quite a brain-teaser, but as I said, I have a problem with people who - based on Postman&#8217;s views - reject technology without asking the right questions and getting the right answers. In this post, I will obviously discuss video conferencing as I find myself, time after time, amazed when people who put it down because &#8220;<a rel="nofollow" target="_blank" href="http://www.jasondunn.com/video-calling-1156/trackback">it has powerful psychological barriers</a>&#8220;.</p>
<p>I have already discussed here the way <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/12/15/what-will-be-the-office-communication-means-of-choice-why-not-all/">video conferencing is different than our existing means of communication</a>, for better and worse. And I agree that video brings with it a level of intimacy that all of our communication means currently lack, but isn&#8217;t it a BIG advantage?!</p>
<p>Oddly enough people feel they should &#8220;prepare&#8221; for a video conference, while they are much more &#8220;natural&#8221; &#8220;just talking&#8221; on the phone. Others resent the fact that on a video call the other party can see them - follow their gaze, determine if they are focused, interpret their emotions, etc. (something that would happen in a REAL LIFE meeting). Most people claim that they are simply &#8220;not comfortable&#8221; with video conferencing because they do not know how to behave in front of the camera.</p>
<p align="center"><iframe class="embeddedvideo" src="http://www.youtube.com/v/cvd7-_UtZ70&hl=en&fs=1" type="application/x-shockwave-flash" width="425" height="344"></iframe><br /> 
Video Conferencing (in)Etiquette.</p>
<p>Nick Carr says it best - the Net is already becoming a universal medium, the conduit for most of the information that flows through our eyes and ears into our minds. Just like the advantages of having immediate access (via Google, or whatever search engine you&#8217;re using) to such an incredibly rich wealth of information is obvious, so are the advantages of using it to enhance our communication possibilities.</p>
<h3>Most People Simply Don&#8217;t Know How to Have a Video Conference</h3>
<p>Neil Postman suggested three questions one should ask himself when confronted with a new technology:</p>
<ol>
<li>What is the problem to which this technology is a solution?</li>
<li>Whose problem is it actually?</li>
<li>If there is a legitimate problem here that is solved by the technology, what other problems will be created by my using this technology?</li>
</ol>
<p>With Video conferencing, <a rel="nofollow" target="_blank" href="http://www.vide.net/cookbook/cookbook.en/list_page.php?topic=2&amp;url=telecommute.html&amp;level=2&amp;sequence=2.2&amp;name=Telecommuting">the problem it aims to solve is quite clear</a> (and so are <a rel="nofollow" target="_blank" href="http://www.itmanagementnews.com/itmanagementnews-54-20050711TechnologyintheWorkplaceTheBenefitsofVideoConferencing.html">the benefits</a>). It&#8217;s quite obvious that it is <strong>our </strong>problem (as in most of society), and so the benefits will also be ours. Regarding the problems it creates, I believe they are all just a matter of familiarity.</p>
<p>Fredric Paul, editor-in-chief of bMighty.com says that most people simply <a rel="nofollow" target="_blank" href="http://www.bmighty.com/network/showArticle.jhtml?articleID=209901125&amp;pgno=2">don&#8217;t know how to have a video conference</a>. Everyone knows how to have an in-person meeting, some of us know how to attend an audio conference, but video conferencing is a whole different ballgame.</p>
<p>Video conferencing ups the engagement level of its participants - you can&#8217;t &#8220;hide&#8221;, you can&#8217;t mute and multitask, you can&#8217;t yawn too much or fall asleep on your desk, you have to be more conscious of your body language. In fact, you have to conduct yourself almost like you&#8217;re in the same room with those people&#8230;</p>
<p align="center"><img class="alignnone" src="http://blog.radvision.com/images/2009/20090105-VideoOverEnterprise-baby2baby-call.jpg" alt="" width="450" height="357"/><br />
Baby-to-baby video call via Skype. (<a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/criminalintent/1028441939/">CC</a>)</p>
<p>Familiarity will take time. Video has already begun creeping into our hearts and minds via the media and <a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/10/16/what-makes-mobile-video-calls-quality-poor-and-how-to-fix-it/">the big names jumping in with video for our desktop</a> . And <a rel="nofollow" target="_blank" href="http://www.bmighty.com/network/showArticle.jhtml?articleID=209901125&amp;pgno=4">as Fredric Paul observed</a>, video eventually becomes &#8220;quite addictive&#8221;, and &#8220;once companies start using it, they find more and more uses for it and usage levels go up&#8221;.</p>
<p>So, if you <strong>are</strong> taking your first steps in the wonderful world of video conferencing, here are a few tips on the <strong>how</strong> in &#8220;how to have a video conference&#8221;:</p>
<ul>
<li>Connect a few minutes <strong>before</strong> the scheduled time to adjust your camera and sound levels.</li>
<li>Avoid eating, drinking, gum-chewing, etc.</li>
<li>Disable any potential distracting applications.</li>
<li>Keep your gaze at the screen at all times.</li>
<li>Don&#8217;t multi-task while you&#8217;re in a video conference.</li>
</ul>
<p>To sum it up, I would say: treat a video conference as any other <strong>in-person</strong> meeting, except that you have to accept that you rely on tools and so you need to prepare them just like you prepare yourself.</p>
<h3>Video Conference Would Just Become Part of Our Culture</h3>
<p>The Internet has altered our mental habits, worries Nick Carr. Visual communication will alter our communication habits, but only for the better. And while Nick is haunted by a Stanley Kubrick&#8217;s &#8220;<a rel="nofollow" target="_blank" href="http://www.imdb.com/title/tt0062622/">2001: a Space Oddyssey</a>&#8220;, where people have become so machinelike that the most human character turns out to be (SPOILER ALERT!) a machine in the end, I believe that relying on video conferencing infrastructures to conduct most of our communications would not flatten, but broaden our hearts, minds and human interactions.</p>
<p>In &#8220;<a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/The_Third_Wave_%28book%29">The Third Wave</a>&#8220;, Alvin Toffler predicts a time of stability in terms of culture and technology in the future where the latest wave of change has enhanced our lives and sorted itself out in a way in which we can live in peace with both culture and technology. I&#8217;d guess that there I wouldn&#8217;t need to explain anything about video conferencing - it would just become part of our culture, just like Google.</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise">Video over Enterprise</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/10/15/technology-can-overcome-poverty-ask-me-how/" title="Technology Can Overcome Poverty. Ask Me How! (October 15, 2008)">Technology Can Overcome Poverty. Ask Me How!</a> (1)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/11/06/high-definition-desktop-video-just-try-it/" title="High Definition Desktop Video - Just Try It! (November 6, 2008)">High Definition Desktop Video - Just Try It!</a> (5)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/10/28/small-step-for-your-it-department-big-step-to-your-organization/" title="A Small Step For Your IT Department, a BIG Step To Your Organization (October 28, 2008)">A Small Step For Your IT Department, a BIG Step To Your Organization</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/11/25/with-john-the-plumber-working-on-the-pipes-video-conferencing-will-flow/" title="With John the Plumber Working On the Pipes, Video Conferencing Will Flow (November 25, 2008)">With John the Plumber Working On the Pipes, Video Conferencing Will Flow</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/06/17/will-iphone-do-for-video-conferencing-what-it-has-done-for-mobile-web-browsing/" title="Will the iPhone do for video conferencing what it has done for mobile web browsing? (June 17, 2008)">Will the iPhone do for video conferencing what it has done for mobile web browsing?</a> (3)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=yCVAlQ.P"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=yCVAlQ.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=XgGFT6.P"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=XgGFT6.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=2FeGji.p"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=2FeGji.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=iZhpiW.p"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=iZhpiW.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=jcB77J.p"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=jcB77J.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=kQeyel.P"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=kQeyel.P" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VideoOverEnterprise/~4/503568684" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/503632356" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVideoOverEnterprise%2F%7E3%2F503568684%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VideoOverEnterprise/~3/503568684/</feedburner:origLink></item>
      <item>
         <title>Heading to CES 2009: Las Vegas Here I Come! [VoIP Survivor]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/503421377/</link>
         <description>Tonight I&amp;#8217;ll be starting the long journey to Las Vegas - practically on the other side of the planet. It will be my second time in Vegas, and my first time at CES.
CES is the world&amp;#8217;s largest consumer technology tradeshow, with more companies than time allows to meet. I&amp;#8217;ll be there with some of our [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor"&gt;VoIP Survivor&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/voipsurvivor/?p=148</guid>
         <pubDate>Mon, 05 Jan 2009 05:46:50 -0800</pubDate>
         <content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://flickr.com/photos/pete_the_painter/2942882902/"><img class="alignleft" src="http://blog.radvision.com/images/2009/20090105-VoipSurvivor-CES.jpg" alt="" width="300" height="225"/></a>Tonight I&#8217;ll be starting the long journey to Las Vegas - practically on the other side of the planet. It will be my second time in Vegas, and my first time at <a rel="nofollow" target="_blank" href="http://www.cesweb.org/">CES</a>.</p>
<p>CES is the world&#8217;s largest consumer technology tradeshow, with more companies than time allows to meet. I&#8217;ll be there with some of our closest partners for a new project we&#8217;ve been working on for the last couple of months.</p>
<p>I&#8217;ve spent the last few days going over the names of companies at the show and preparing a &#8220;hit list&#8221; consisting of the companies that can become potential customers for our technology or those that we can partner with for their own technology or services.</p>
<p>I&#8217;m really looking forward for this show. If you&#8217;re going to be at CES and would like to meet /leave me a <a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/contact/">note in my contact form</a>, I&#8217;d love to read what you have to say.</p>
<p>Las Vegas - here I come!</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor">VoIP Survivor</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li>No related posts.</li> </ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=oxAELj.P"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=oxAELj.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=kIhBIp.P"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=kIhBIp.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=U3ygCO.p"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=U3ygCO.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=59LiPe.p"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=59LiPe.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=GSmxlW.p"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=GSmxlW.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=qLWNAK.P"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=qLWNAK.P" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VoipSurvivor/~4/503380131" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/503421377" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVoipSurvivor%2F%7E3%2F503380131%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VoipSurvivor/~3/503380131/</feedburner:origLink></item>
      <item>
         <title>How Big is Big Enough? [VoIP Survivor]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/500257520/</link>
         <description>2009 has just started, and yes - it is the year of video telephony, at least as far as I can tell. I guess the main reason for this is because video quality has become decent with industry work over the past two years, touting it as &amp;#8220;High Definition&amp;#8221;.
High Definition has many different definitions: it&amp;#8217;s [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor"&gt;VoIP Survivor&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/voipsurvivor/?p=147</guid>
         <pubDate>Thu, 01 Jan 2009 06:22:18 -0800</pubDate>
         <content:encoded><![CDATA[<p>2009 has just started, and yes - it is <a rel="nofollow" target="_blank" href="http://blog.tmcnet.com/talking-video/2008/12/inspector-gadgets-video-phone-watch-is-now-a-reality.html">the year of video telephony</a>, at least as far as I can tell. I guess the main reason for this is because video quality has become decent with industry work over the past two years, touting it as &#8220;High Definition&#8221;.</p>
<p>High Definition has many different definitions: it&#8217;s 1080p (1920&#215;1080) for sure. It&#8217;s also 720p (1280×720). At times, 480p is considered HD as well (<a rel="nofollow" target="_blank" href="http://www.htc.com/www/product/touchhd/specification.html">HTC Touch HD has 480&#215;800 resolution</a>). The term is <a rel="nofollow" target="_blank" href="http://www.intomobile.com/2008/11/14/when-hd-really-means-hd%E2%80%A6.html">being overused</a> for so many things.</p>
<p>I prefer just taking Sagee&#8217;s perception regarding HD, stating that it is the best available resolution at a given point in time.</p>
<p align="center"><img class="alignnone" src="http://blog.radvision.com/images/2009/20090101-VoipSurvivor-video-resolutions.jpg" alt="" width="600" height="289"/><br />
Number of pixels in different resolutions</p>
<p>I know people who don&#8217;t see the need for 1080p - they can&#8217;t see the difference from 720p. And now, there&#8217;s this <a rel="nofollow" target="_blank" href="http://fullres.blogspot.com/2008/12/tmm-inc-announces-trudef-compresses-4k.html">TRUEDEF thing that does 4096&#215;2048 resolution</a>. Four times the pixels as 1080p. Hmm.</p>
<p>As for the technical differences of the video coding technologies of TRUEDEF from HD, I&#8217;ll leave that to others who are more suited to deal with them than I am.</p>
<p>Do we really need this kind of resolution? Isn&#8217;t 1080p enough?</p>
<p>I&#8217;d rather go for 3D than invest time and money into more pixels.</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor">VoIP Survivor</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/12/11/video-coding-for-dummies/" title="Video Coding For Dummies (December 11, 2008)">Video Coding For Dummies</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/10/16/what-makes-mobile-video-calls-quality-poor-and-how-to-fix-it/" title="What Makes Mobile Video Calls Quality Poor and How to Fix it (October 16, 2008)">What Makes Mobile Video Calls Quality Poor and How to Fix it</a> (1)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/12/25/the-reasons-video-calling-isn%e2%80%99t-catching-on/" title="The Reasons Video Calling Isn&#x002019;t Catching On (December 25, 2008)">The Reasons Video Calling Isn’t Catching On</a> (2)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/11/20/the-2-kinds-of-real-time-video/" title="The 2 Kinds of Real Time Video (November 20, 2008)">The 2 Kinds of Real Time Video</a> (2)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/02/28/emerging-markets-of-video-communications/" title="The 2 Emerging Markets of Video Communications (February 28, 2008)">The 2 Emerging Markets of Video Communications</a> (0)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=9p5Hzv.P"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=9p5Hzv.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=K3hzGT.P"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=K3hzGT.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=03vvkZ.p"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=03vvkZ.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=MV3lFm.p"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=MV3lFm.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=RUXfs6.p"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=RUXfs6.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=uk4RLd.P"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=uk4RLd.P" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VoipSurvivor/~4/500222923" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/500257520" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVoipSurvivor%2F%7E3%2F500222923%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VoipSurvivor/~3/500222923/</feedburner:origLink></item>
      <item>
         <title>A Couple Of Useful Posts For The New Year [Video Over Enterprise]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/500257521/</link>
         <description>Tsahi, chief editor for the RADVISION blogs, is always asking us for &amp;#8220;useful posts&amp;#8221;. A &amp;#8220;useful post&amp;#8221;, according to Tsahi, is a post that you will bookmark and return to, that will serve as a guide, and that will remains relevant.
I hope I&amp;#8217;ve already written one or two useful posts by now, but just in [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise"&gt;Video over Enterprise&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/videooverenterprise/?p=83</guid>
         <pubDate>Thu, 01 Jan 2009 06:06:25 -0800</pubDate>
         <content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/elnicofotos/696966650/"><img class="alignright" src="http://blog.radvision.com/images/2009/20090101-VideoOverEnterprise-Useful-posts.jpg" alt="" width="200" height="200"/></a>Tsahi, chief editor for the RADVISION blogs, is always asking us for &#8220;useful posts&#8221;. A &#8220;useful post&#8221;, according to Tsahi, is a post that you will bookmark and return to, that will serve as a guide, and that will remains relevant.</p>
<p>I hope I&#8217;ve already written one or two useful posts by now, but just in case you are looking for more, here are a couple which were not written by me, but go along very well with what I write (and preach):</p>
<p><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/12/11/video-coding-for-dummies/"><img class="alignleft" src="http://blog.radvision.com/images/2009/20090101-VideoOverEnterprise-Video-glossary.jpg" alt="" width="75" height="95"/></a>On Tsahi&#8217;s blog, a colleague of mine, Amit Klir, has recently posted &#8220;<a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/12/11/video-coding-for-dummies/">Video Coding For Dummies</a>&#8220;, which can certainly clarify various terms used by myself, as well as other bloggers, when dealing with video over IP. It also appears in <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/12/18/like-the-blog-now-try-the-ebook/">the free eBook on Video Conferencing</a> we just released last week (hey, that&#8217;s one USEFUL book&#8230; :-).</p>
<p><a rel="nofollow" target="_blank" href="http://telbitconsulting.wordpress.com/2008/12/03/videoconferencing-101-chapter-1/"><img class="alignright" src="http://blog.radvision.com/images/2009/20090101-VideoOverEnterprise-telbit-consulting.jpg" alt="" width="100" height="30"/></a>Mike Pihlman, who&#8217;s <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/12/29/have-you-tried-scopia-desktop-yet-heres-a-useful-review-and-some-qa/">excellent review of Scopia Desktop I mentioned</a> in my last post, wrote a similar post a couple of weeks ago, titled &#8220;<a rel="nofollow" target="_blank" href="http://telbitconsulting.wordpress.com/2008/12/03/videoconferencing-101-chapter-1/">Videoconferencing 101, Chapter 1</a>&#8220;. In this post Mike defines and clarifies some basic terms you should know especially if you are reading this blog.</p>
<p>So if you&#8217;re interested in learning the basics about video coding and video conferencing, here&#8217;s a nice idea for a new year&#8217;s resolution - learn something new about video and video conferencing every week. Bookmark these, keep reading my blog, and slowly but surely dive into this wonderful world.</p>
<p>Enjoy, and a happy new year to us all!</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise">Video over Enterprise</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/12/18/like-the-blog-now-try-the-ebook/" title="Like The Blog? Now Try the eBook! (December 18, 2008)">Like The Blog? Now Try the eBook!</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/video-conferencing-ebook/" title="FREE eBook: Video Conferencing, The Enterprise and You (December 18, 2008)">FREE eBook: Video Conferencing, The Enterprise and You</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/06/17/will-iphone-do-for-video-conferencing-what-it-has-done-for-mobile-web-browsing/" title="Will the iPhone do for video conferencing what it has done for mobile web browsing? (June 17, 2008)">Will the iPhone do for video conferencing what it has done for mobile web browsing?</a> (3)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/12/15/what-will-be-the-office-communication-means-of-choice-why-not-all/" title="What will be the Office Communication Means of Choice? Why Not All?! (December 15, 2008)">What will be the Office Communication Means of Choice? Why Not All?!</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/07/22/vrs-visually-connects-the-hearing-and-speaking-impaired-to-the-world/" title="VRS visually connects the deaf and hard of hearing to the world (July 22, 2008)">VRS visually connects the deaf and hard of hearing to the world</a> (3)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=7JoAih.P"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=7JoAih.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=hnGKMD.P"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=hnGKMD.P" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=k57z2J.p"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=k57z2J.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=jyVsBC.p"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=jyVsBC.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=1fxPuT.p"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=1fxPuT.p" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=kOdiKx.P"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=kOdiKx.P" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VideoOverEnterprise/~4/500217200" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/500257521" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVideoOverEnterprise%2F%7E3%2F500217200%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VideoOverEnterprise/~3/500217200/</feedburner:origLink></item>
      <item>
         <title>Have You Tried Scopia Desktop Yet? Here’s A Useful Review And Some Q&amp;A [Video Over Enterprise]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/497804206/</link>
         <description>A few weeks ago RADVISION released version 5.7 of its desktop video conferencing, extending its long time vision of bringing high definition to the desktop. As we are well-aware that many consider video conferencing to be technically challenging, we offered a free trial of the client.
We got some good feedback on &amp;#8220;Try Scopia&amp;#8220;, but I [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise"&gt;Video over Enterprise&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/videooverenterprise/?p=82</guid>
         <pubDate>Mon, 29 Dec 2008 05:52:04 -0800</pubDate>
         <content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://www.tryscopia.com/"><img class="alignright" src="http://blog.radvision.com/images/promotion/TryScopia_327x298.gif" alt="" width="327" height="298"/></a>A few weeks ago <a rel="nofollow" target="_blank" href="http://www.radvision.com/Corporate/PressCenter/2008/2dec2008_scopia_desktop_5.7.htm">RADVISION released version 5.7 of its desktop video conferencing</a>, extending its long time vision of bringing high definition to the desktop. As we are well-aware that many consider video conferencing to be technically challenging, we offered <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/11/06/high-definition-desktop-video-just-try-it/">a free trial of the client</a>.</p>
<p>We got some good feedback on &#8220;<a rel="nofollow" target="_blank" href="http://www.radvision.com/Products/Desktop/TrySCOPIADesktop">Try Scopia</a>&#8220;, but I have to admit that when I saw that Mike Pihlman&#8217;s, &#8220;<a rel="nofollow" target="_blank" href="http://telbitconsulting.wordpress.com/">Technology and Product Reviews For Everyone</a>&#8221; blog was planning to review SCOPIA Desktop, it interested me the most.</p>
<p>Mike, who I have been following for a while, writes a technical blog on technology and product reviews specializing in video conferencing and other &#8220;green&#8221; technologies. Mike knows video conferencing, and so his feedback in the form of a product review, I assumed, would be something to look forward to.</p>
<p>And I wasn&#8217;t disappointed. Last week he posted &#8220;<a rel="nofollow" target="_blank" href="http://telbitconsulting.wordpress.com/2008/12/19/radvision-scopia-desktop-review/">Radvision Scopia Desktop Review</a>&#8220;, where he carefully reviews EVERYTHING about the product, from download and installation to video conferencing participation and recording. Bottom line - Mike says:</p>
<p>&#8220;The ability to instant collaborate is extremely valuable&#8230;</p>
<p>I see the SCOPIA Desktop as the culmination of years of effort to introduce a standard-base desktop product that can be used by anyone, anywhere, anytime.<br />
Radvision has succeeded&#8230;</p>
<p>I would install the SCOPIA Desktop in a heartbeat&#8230;&#8221;</p>
<p align="center"><a rel="nofollow" target="_blank" href="http://www.youtube.com/watch?v=Li7nCZ0Q6qw"><img class="alignnone" src="http://blog.radvision.com/images/2008/20081229-VideoOverEnterprise-SD-video-review.jpg" alt="" width="429" height="329"/></a><br />
A Video Capture of <a rel="nofollow" target="_blank" href="http://www.youtube.com/watch?v=Li7nCZ0Q6qw">Mike&#8217;s Video Review</a> of SCOPIA Desktop.</p>
<p>In his post Mike was asking some good questions regarding SCOPIA Desktop, and it is my pleasure to assist with some good answers, which I gathered from the SCOPIA Desktop team. I thought it would be great to share them here as well:<br />
[remarks and clarifications for Mike's answers in brackets]</p>
<p><strong>How many people can view the stream [of a real-time video conference] at the same time?</strong></p>
<p>SCOPIA Desktop&#8217;s integrated streaming experience, which includes audio, video and the presentation (with annotations), supports both unicast (1 to 1) and multicast (1 too many) streaming.</p>
<p>There is no limit on the number of clients that can simultaneously view such a stream (multicast), and the number of clients who can view different streams (unicast) at the same time is limited by the number of servers you get (of course you can deploy multiple servers).</p>
<p>In order to maximize capacity and optimize bandwidth utilization, an administrator can determine which users will view the stream in unicast and which users will see the stream in multicast.</p>
<p><strong>Do all viewers need the Rad app [SCOPIA Desktop, that is], or can we also view it via REAL, QT, WM [popular video players] Or via an H.323 [video conferencing] client? </strong></p>
<p>The SCOPIA Desktop web plug-in is needed for a full interactive experience. This plug-in is free to download &#8220;on demand&#8221; from the server when a user connects.<br />
However, any standards based H.323 or SIP client can also connect to a meeting.<br />
For a &#8220;view only&#8221; experience, participants can use the SCOPIA Desktop portal which embeds QuickTime&#8217;s streaming components<em>.</em></p>
<p><strong>When recording a meeting, is the &#8220;data&#8221; presentation also recorded?</strong></p>
<p>Yes. And since SCOPIA Desktop records the data presentation in H.264 and in 720p, you can enjoy a great meeting experience, even when it is &#8220;just&#8221; a playback.</p>
<p><strong>Is the desktop VC app H.323? </strong></p>
<p>Not entirely. The media, RTP and SRTP are fully standard. Signaling is different because of the difficulty H.323 has with firewalls. This is especially true with remote users, and so we use a proprietary SIP-like protocol <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/12/25/desktop-conferencing-that-crosses-the-firewalls-teleworker-dream/">that is firewall and NAT friendly</a> with HTTPS tunneling capabilities. Everything is, of course, automatic and transparent to the end user.</p>
<p><strong>If not, where is the translating completed to connect to an H.323 MCU? </strong></p>
<p>Translation is done on the SCOPIA Desktop Server that connects to the MCU via H.323. Therefore, you can conduct a meeting using a mix of desktop clients, room systems (SIP &amp; H.323), mobile phones, and fixed phones.</p>
<p><strong>Do the [virtual] meeting rooms have to be set up in advance, or are they pure &#8220;ad-hoc&#8221; needing only a set prefix?</strong></p>
<p>Virtual rooms are set up in advance by the administrator to control the corporate use (define passwords, maximum allowed bandwidth, etc.).</p>
<p>A typical deployment will provide everyone in the organization with a virtual room number, similar to providing a personal phone extension.</p>
<p>Resources are not used unless someone is actually in the virtual room.<br />
Ad-hoc meetings, where you can specify a prefix and a meeting ID, are also supported.</p>
<p><strong>When I connect can I choose a meeting &#8220;location&#8221; of my choice? For example: 56123679 rather than 56666</strong></p>
<p>Correct.</p>
<p><strong>Can I hold meetings in two or three or four different virtual rooms? For example: 542345, 678456, and 1234?</strong></p>
<p>Yes, you can have as many virtual rooms as you want.</p>
<p><strong>Can a gateway be included to receive telephone or cell phone calls in meeting? </strong></p>
<p>Absolutely. You can even include 3G phones in a meeting with the <a rel="nofollow" target="_blank" href="http://www.radvision.com/Products/3GProductsApplications/SCOPIA3GVideoGateway/">RADVISION 3G gateway</a>. In that case, you will be able to send and receive video to/from a 3G phone just as easily.</p>
<p><strong>If I were an enterprise buying this, what do I get? MCU? Server? GK? GW? What is essential and what is optional? </strong></p>
<p>What you get is a bundled solution.<br />
The SCOPIA solution includes SCOPIA Desktop, <a rel="nofollow" target="_blank" href="http://www.radvision.com/Products/Network/iVIEWSuite/">iVIEW</a> (our management system), an integrated <a rel="nofollow" target="_blank" href="http://www.radvision.com/Products/Network/ECSGatekeeper/">Gatekeeper</a>, and the SCOPIA MCU.<br />
This package includes unlimited client distribution, firewall traversal, streaming, H.323 &amp; SIP connectivity to room systems. You designate a package with the appropriate number of concurrent users that you wish to support.<br />
Conference recording and Gateways to ISDN, PSTN and 3G are optional.</p>
<p><strong>I see you use IE to fully connect. Will you be supporting Firefox, Chrome, Safari, etc in the future?</strong></p>
<p>Yes, support for more browsers as well as other platforms for the interactive experience is in the works.<br />
Note that to view a stream of the meeting (Audio, Video and Presentation) you can use any of these, as all web browsers are supported, on both Windows and Mac.</p>
<p><strong>How many people can meet in a live videoconference at one time?</strong></p>
<p>Up to 200 interactive participants</p>
<p><strong>I want to gather usage statistics such as: hours used per month per person, utilization, total hours used, etc. What do I need? Will that cost extra?</strong></p>
<p>Call Detail Records (CDRs) are available from the iVIEW management suite, which is included in the bundle.</p>
<p>.</p>
<p>I hope that following Mike&#8217;s excellent review and the answers above, you will give SCOPIA Desktop a test drive, if you haven&#8217;t done so already. Just like Mike, I believe that this is THE way to communicate, from your desktop and to anyone, anywhere. I&#8217;m glad to see that others outside RADVISION share our enthusiasm and accomplishment.</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise">Video over Enterprise</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/11/25/with-john-the-plumber-working-on-the-pipes-video-conferencing-will-flow/" title="With John the Plumber Working On the Pipes, Video Conferencing Will Flow (November 25, 2008)">With John the Plumber Working On the Pipes, Video Conferencing Will Flow</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/11/06/high-definition-desktop-video-just-try-it/" title="High Definition Desktop Video - Just Try It! (November 6, 2008)">High Definition Desktop Video - Just Try It!</a> (5)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/12/25/desktop-conferencing-that-crosses-the-firewalls-teleworker-dream/" title="Desktop Conferencing That Crosses The (Fire)walls - A Teleworker&#8217;s Dream (December 25, 2008)">Desktop Conferencing That Crosses The (Fire)walls - A Teleworker&#8217;s Dream</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/06/10/you-are-where-your-presence-information-says-you-are/" title="You are where your presence information says you are (June 10, 2008)">You are where your presence information says you are</a> (1)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/07/08/video-conferencing-in-my-hotel-room-nothing-to-write-home-about/" title="Video conferencing in my hotel room &#x002013; nothing to write home about, I&#8217;m afraid (July 8, 2008)">Video conferencing in my hotel room – nothing to write home about, I&#8217;m afraid</a> (3)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=l6rzTX.O"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=l6rzTX.O" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=cKsuFu.O"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=cKsuFu.O" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=dk6bTR.o"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=dk6bTR.o" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=L1fkXc.o"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=L1fkXc.o" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=ulRMfJ.o"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=ulRMfJ.o" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=qGNczI.O"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=qGNczI.O" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VideoOverEnterprise/~4/497776898" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/497804206" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVideoOverEnterprise%2F%7E3%2F497776898%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VideoOverEnterprise/~3/497776898/</feedburner:origLink></item>
      <item>
         <title>Video Telephony Touching SMBs [VoIP Survivor]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/497791000/</link>
         <description>[Amir Zmora who just returned for a "second term" here at RADVISION. Amir has been working for over decade in the VoIP industry, half of that time here in various marketing and product positions. He was aching to write here on my blog, so I am giving him the stage for.]
We technical people always look [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor"&gt;VoIP Survivor&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/voipsurvivor/?p=145</guid>
         <pubDate>Mon, 29 Dec 2008 05:40:44 -0800</pubDate>
         <content:encoded><![CDATA[<p><em>[</em><a rel="nofollow" target="_blank" href="http://www.linkedin.com/in/zmora"><em>Amir Zmora</em></a><em> who just returned for a "second term" here at RADVISION. Amir has been working for over decade in the VoIP industry, half of that time here in various marketing and product positions. He was aching to write here on my blog, so I am giving him the stage for.]</em></p>
<p>We technical people always look at things from the spec sheet side of life: What protocol? What codec? What resolution? What I want to bring to you here is the opposite view of life, that of the non-technical user. By non-technical I don&#8217;t mean in the sense of someone not knowing the detailed differences between SIP and H.323 or between G.711 and AMR-WB but someone who doesn&#8217;t know the acronym VoIP.</p>
<p><img class="alignright" src="http://blog.radvision.com/images/2008/20081229-VoipSurvivor-Ultra-orthodox.jpg" alt="" width="283" height="424"/>I was onboard an airplane about to return home from Hong Kong to Israel. Next to me was an ultra-orthodox Jewish guy who looked to be in his mid-late 50s. I thought: Not much to speak about with this guy, good thing I have my Bose Noise Cancellation Headphones and iPod with me. As we started preparing for takeoff the flight attendants were taking the &#8220;turn off all electronic devices&#8221; thing seriously so they weren&#8217;t that happy with me when I kept my music rolling. I was forced to turn it off, and I ended up diving into a conversation with my neighbor.</p>
<p>He told me about his company that exports clothes from China and imports them to the US and South America. The guy lived in Hong Kong for some 20 years and is now living in Israel. He has offices in Hong Kong, Israel, the US and Brazil.</p>
<p>When it was my turn to talk, I looked for a simple, non-techie way to tell him we are into providing software building blocks for VoIP applications. When I got to our video stuff he started getting excited telling me he is using video on a day-to-day basis. In his offices he has video terminals from some of the leading vendors in this space, which each cost him thousands of dollars. These terminals are deployed at the desktop level, meaning not in meeting rooms but on some of his employees&#8217; office desks. He said this is the only way for his people to really see their colleagues and bosses in other offices. All-in-all, he said, video is going to be found in every office. It&#8217;s going to be just like a FAX.</p>
<p>To me it was really fun hearing these words from a non-geeky, non-technical person who is excited not because of the technology but simply because of the value it brings him. He doesn&#8217;t know if what he is using is SD or HD and he is sure that H.323 is a special model of the <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Mazda_323">Mazda 323</a> (a car that was once dominant among Israeli High-Tech employees). BUT what he does know is that some of his employees have never physically met yet they meet face-to-face daily through this technology.</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor">VoIP Survivor</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/12/01/celebrating-my-10th-year-at-radvision/" title="Celebrating my 10th Year at RADVISION (December 1, 2008)">Celebrating my 10th Year at RADVISION</a> (3)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/05/26/video-conferencing-on-an-iphone-in-what-protocol/" title="Video conferencing on an iPhone? In what protocol? (May 26, 2008)">Video conferencing on an iPhone? In what protocol?</a> (7)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/02/07/the-future-of-skype-in-the-world-of-standardized-voip/" title="The future of Skype in the world of standardized VoIP (February 7, 2008)">The future of Skype in the world of standardized VoIP</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/04/21/the-effects-of-multi-core-on-sip-servers/" title="The effects of multi-core on SIP servers (April 21, 2008)">The effects of multi-core on SIP servers</a> (2)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/05/29/the-challenges-of-testing-unified-communication-products-and-hosting-superop/" title="The challenges of testing Unified Communication products (and/or hosting a SuperOp event) (May 29, 2008)">The challenges of testing Unified Communication products (and/or hosting a SuperOp event)</a> (4)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=CWOSgs.O"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=CWOSgs.O" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=Xr36rU.O"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=Xr36rU.O" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=lAlNlh.o"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=lAlNlh.o" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=wjncYW.o"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=wjncYW.o" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=mv0BI6.o"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=mv0BI6.o" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=D2RwwL.O"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=D2RwwL.O" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VoipSurvivor/~4/497768045" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/497791000" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVoipSurvivor%2F%7E3%2F497768045%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VoipSurvivor/~3/497768045/</feedburner:origLink></item>
      <item>
         <title>The Reasons Video Calling Isn’t Catching On [VoIP Survivor]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/494914951/</link>
         <description>Over at Talking Video, I asked if a &amp;#8220;talking heads&amp;#8221; kind of an application is enough or do we need another &amp;#8220;killer application&amp;#8221; for video telephony. That got me thinking - there are a lot of people who simply don&amp;#8217;t believe in video. I&amp;#8217;m definitely not one of them. Here&amp;#8217;s a list of reasons that [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor"&gt;VoIP Survivor&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/voipsurvivor/?p=144</guid>
         <pubDate>Thu, 25 Dec 2008 06:03:47 -0800</pubDate>
         <content:encoded><![CDATA[<p>Over at Talking Video, I asked if <a rel="nofollow" target="_blank" href="http://blog.tmcnet.com/talking-video/2008/12/does-video-telephony-require-a-killer-application.html">a &#8220;talking heads&#8221; kind of an application is enough or do we need another &#8220;killer application&#8221; for video telephony</a>. That got me thinking - there are a lot of people who simply don&#8217;t believe in video. I&#8217;m definitely not one of them. Here&#8217;s a list of reasons that I&#8217;ve heard over the years of why video calling isn&#8217;t catching on, in no specific order:</p>
<h3><a rel="nofollow" target="_blank" href="http://flickr.com/photos/urbanshoregirl/439289888/"><img class="alignright" src="http://blog.radvision.com/images/2008/20081225-VoipSurvivor-Bowling.jpg" alt="" width="200" height="150"/></a>Voice and Video Quality</h3>
<ul>
<li><strong>Bandwidth</strong> - video requires <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/06/24/high-definition-is-next-do-you-know-how-much-bandwidth-you-have/">huge amounts of bandwidth</a>. You simply can&#8217;t do video over the internet.</li>
<li><strong>Processing Power</strong> - CPUs <a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/07/03/wanted-multi-core-for-video-communication-clients/">can&#8217;t process video fast enough</a>, and if they can, they cost too much.<strong></strong></li>
<li><strong>Latency </strong>- the bandwidth is good, but latency is killing the quality. You can&#8217;t have a conversation if someone can&#8217;t interject when you breathe or know when you finished a sentence.</li>
<li><strong>Packet Loss</strong> - the networks quality is lousy, and <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/08/26/the-seven-deadly-sins-of-visual-quality-over-ip/">video is just so sensitive</a>. If you work on a noisy network, you just can&#8217;t get decent video.</li>
</ul>
<h3>Management/Deployment</h3>
<ul>
<li><strong>Firewalls </strong>- firewalls and NATs (Network Address Translators) <a rel="nofollow" target="_blank" href="http://blog.radvision.com/codeofcontact/2008/08/06/why-is-voip-so-hard-on-firewalls-and-nat/">make video deployment impossible</a>.</li>
<li><strong>Walled Gardens</strong> - today&#8217;s systems are <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/06/03/the-babel-fish-proves-video-conferencing-does-exist/">closed islands of deployments</a> that can&#8217;t interwork with each other.</li>
<li><strong>Complexity</strong> - video systems are too complex. You must have IT people handholding you on every video conference you make.</li>
</ul>
<h3>Pricing</h3>
<ul>
<li><strong>Cost</strong> - video costs a fortune.</li>
</ul>
<h3>Human Factors</h3>
<ul>
<li><strong>People Don&#8217;t Like to be Seen</strong> - when you place people in front of the camera they think about how they look and not about the conversation. Video conferencing reduces the communication level and focus, instead of increasing it.</li>
<li><strong>No Real Need</strong> - who needs video? Voice is good enough for almost everything.</li>
</ul>
<p>I can say that nothing on this list strikes me as being true today, or as a barrier that can&#8217;t be overcome with good technical solutions.</p>
<p>The trend I see is that the technical problems are being solved one after the other. I&#8217;ll devote some of my posts in the beginning of 2009 to discuss the relevant solutions.</p>
<p>Oh - and if you think I missed a reason - feel free to add it by commenting.</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor">VoIP Survivor</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/11/20/the-2-kinds-of-real-time-video/" title="The 2 Kinds of Real Time Video (November 20, 2008)">The 2 Kinds of Real Time Video</a> (2)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/12/11/video-coding-for-dummies/" title="Video Coding For Dummies (December 11, 2008)">Video Coding For Dummies</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/02/28/emerging-markets-of-video-communications/" title="The 2 Emerging Markets of Video Communications (February 28, 2008)">The 2 Emerging Markets of Video Communications</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2008/07/10/the-right-processing-power-for-high-definition/" title="In search of the right processing power for High Definition (July 10, 2008)">In search of the right processing power for High Definition</a> (5)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor/2009/01/01/how-big-is-big-enough/" title="How Big is Big Enough? (January 1, 2009)">How Big is Big Enough?</a> (0)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=7tQHO"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=7tQHO" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=fwSYO"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=fwSYO" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=SiKFo"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=SiKFo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=JnGNo"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=JnGNo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=mu0ho"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=mu0ho" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=ZsKVO"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=ZsKVO" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VoipSurvivor/~4/494855256" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/494914951" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVoipSurvivor%2F%7E3%2F494855256%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VoipSurvivor/~3/494855256/</feedburner:origLink></item>
      <item>
         <title>Desktop Conferencing That Crosses The (Fire)walls - A Teleworker’s Dream [Video Over Enterprise]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/494867719/</link>
         <description>Desktop video conferencing is considered to be a key element in a true virtual working place. As millions of workers are expected to telework by 2010, there&amp;#8217;s a growing need to support desktop video conferencing from outside of the enterprise secured LAN. A Teleworker&amp;#8217;s Dream (CC)
VoIP and firewalls - a must-solve problem
I have already mentioned RADVISION&amp;#8217;s [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise"&gt;Video over Enterprise&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/videooverenterprise/?p=80</guid>
         <pubDate>Thu, 25 Dec 2008 04:39:10 -0800</pubDate>
         <content:encoded><![CDATA[<p>Desktop video conferencing is <a rel="nofollow" target="_blank" href="http://www.wainhouse.com/files/papers/wr-vc2desktop.pdf">considered to be a key element</a> in a true virtual working place. As <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/05/22/reaching-out-to-the-desktop-according-to-frost-and-sullivan/">millions of workers are expected to telework by 2010</a>, there&#8217;s a growing need to support desktop video conferencing from outside of the enterprise secured <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Local_Area_Network">LAN</a>.</p>
<p align="center"><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/ddfic/456799827/"><img class="alignnone" src="http://blog.radvision.com/images/2008/20081225-VideoOverEnterprise-Teleworker-dream.jpg" alt="" width="450" height="338"/></a><br />
A Teleworker&#8217;s Dream (<a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/ddfic/456799827/">CC</a>)</p>
<h3>VoIP and firewalls - a must-solve problem</h3>
<p>I have already <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/03/24/shoe-maker-does-not-go-bare-footed/">mentioned RADVISION&#8217;s desktop client</a>, Scopia Desktop, as it is used by all RADVISION employees for daily video conferences. Scopia Desktop enables any member of the organization, as well as customers and partners outside of the organization, to participate in any corporate video conference as it incorporates a built-in <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/NAT_traversal">firewall traversal</a> mechanism.</p>
<p>Ran from &#8220;Code of Contact&#8221; next door has already explained <a rel="nofollow" target="_blank" href="http://blog.radvision.com/codeofcontact/2008/08/06/why-is-voip-so-hard-on-firewalls-and-nat/">why VoIP is so hard on firewalls and NATs</a>. IT people are working hard on blocking anything outside of the private network, including video conferencing clients. Ran discussed <a rel="nofollow" target="_blank" href="http://blog.radvision.com/codeofcontact/2008/08/13/5-ways-to-solve-nat-traversal-for-voip-protocols/">ways to solve this problem</a>, but most are pretty sophisticated and/or require an additional investment - for instance, reconfiguring the firewall (huh?) or adding a Session Border Controller (a <a rel="nofollow" target="_blank" href="http://www.newport-networks.com/pages/session-border-controller.html">what?!</a>).</p>
<p>As a user, especially someone who just received an e-mail inviting you to a video conference on some enterprise system, you really don&#8217;t want to bother with firewalls or any other technical obstacles. All you want to have to do is double-click the link, and get connected. No downloading, no configurations, no nothing. That is just what Scopia Desktop does.</p>
<p align="center"><img class="alignnone" src="http://blog.radvision.com/images/2008/20081225-VideoOverEnterprise-Scopia-Desktop-email.jpg" alt="" width="600" height="357"/><br />
An e-mail invitation to a Scopia Desktop conference (right) and the Scopia Desktop Portal (left).</p>
<p>When you receive an e-mail invitation to a conference, as seen above, you receive a hyperlink for the Scopia Desktop Portal. The portal gives you access to any meeting going on in the enterprise using a browser based user interface. You simply have to log in, click on &#8220;Participate Now&#8221; and&#8230; that&#8217;s that! Every time I use it, at home or in order to talk to someone outside of RADVISION, I am quite impressed at its simplicity.</p>
<h3>What is Scopia Desktop Doing?!</h3>
<p><img class="alignright" src="http://blog.radvision.com/images/series/radvision-patents.gif" alt="" width="150" height="150"/>As I am a tech guy, I don&#8217;t believe in luck, and so I wanted to get to the bottom of things. I had an insightful conversation with <a rel="nofollow" target="_blank" href="http://www.linkedin.com/pub/0/431/949">Emmanuel Weber</a>, System Architect in RADVISION&#8217;s New Hampshire team, in charge of Scopia Desktop. Since RADVISION applied for a <a rel="nofollow" target="_blank" href="http://www.google.com/patents?id=67GYAAAAEBAJ">patent</a> on this piece of innovation and the application is public, I can discuss here what Manu was kind enough to explain.</p>
<p>You need to understand: No matter how well you setup your company&#8217;s network to allow endpoints to connect from the outside, some video participants may not be able to connect. This is because you do not control the network parameters of the other side, and some organizations apply very strict policies (for instance, not allowing any other traffic than <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/HTTP">HTTP</a> and <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Https">HTTPS</a> to/from the outside world). In other words, <a rel="nofollow" target="_blank" href="http://www.nojitter.com/blog/archives/2008/09/why_do_firewall.html">firewalls are fighting with the video</a>.</p>
<p>To solve this problem, our inventive R&amp;D guys developed a method of &#8220;tunneling&#8221; stuff over HTTP and HTTPS. It involves &#8220;hijacking&#8221; the packets to be sent over the network (over a connection-less channel - UDP), encapsulating them and sending them over a secure, connection-based, firewall-friendly connection to the remote party. In this manner the firewall has no way of knowing what is sent over the connection and therefore lets the media go through.</p>
<p>This is quite simple and useful, but large enterprises often use an additional layer of protection over their network in order to avoid the misuse of this channel with a <a rel="nofollow" target="_blank" href="http://en.wikipedia.org/wiki/Proxy_server">HTTP proxy</a>, or a pool of such proxies that control the traffic.</p>
<p>Therefore, The RADVISION solution implements not only all standard HTTPS features, but also all standard features regarding working with HTTP proxies, just like any web browser. This includes HTTPS tunneling through the HTTP proxy. To reach the server through a proxy, the client first locates the proxy, and then it establishes a connection to that proxy and asks the proxy to connect via the HTTPS port of the Server.</p>
<p align="center"><img class="alignnone" src="http://blog.radvision.com/images/2008/20081225-VideoOverEnterprise-Scopia-Desktop-NAT-Traversal.jpg" alt="" width="628" height="233"/></p>
<p>This method has been deployed tens of thousands of times around the world and found to successfully traverse the firewalls of the most meticulous IT departments, including customers in the financial and federal markets, which are known to have strict security policies.</p>
<p>As RADVISION&#8217;s desktop client, <a rel="nofollow" target="_blank" href="http://www.radvision.com/Products/Desktop/TrySCOPIADesktop">Scopia Desktop</a>, uses all of the above technologies to connect the video conferencing system, it creates a seamless experience in connecting to the Scopia Desktop Portal and joining a meeting, no matter your network settings.</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise">Video over Enterprise</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/11/06/high-definition-desktop-video-just-try-it/" title="High Definition Desktop Video - Just Try It! (November 6, 2008)">High Definition Desktop Video - Just Try It!</a> (5)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/11/25/with-john-the-plumber-working-on-the-pipes-video-conferencing-will-flow/" title="With John the Plumber Working On the Pipes, Video Conferencing Will Flow (November 25, 2008)">With John the Plumber Working On the Pipes, Video Conferencing Will Flow</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/05/22/reaching-out-to-the-desktop-according-to-frost-and-sullivan/" title="Reaching out to the desktop, according to Frost &amp; Sullivan (May 22, 2008)">Reaching out to the desktop, according to Frost &amp; Sullivan</a> (3)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/06/10/you-are-where-your-presence-information-says-you-are/" title="You are where your presence information says you are (June 10, 2008)">You are where your presence information says you are</a> (1)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/07/08/video-conferencing-in-my-hotel-room-nothing-to-write-home-about/" title="Video conferencing in my hotel room &#x002013; nothing to write home about, I&#8217;m afraid (July 8, 2008)">Video conferencing in my hotel room – nothing to write home about, I&#8217;m afraid</a> (3)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=7uYMO"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=7uYMO" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=PxyuO"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=PxyuO" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=qzgyo"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=qzgyo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=pelno"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=pelno" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=IZHqo"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=IZHqo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=sgd8O"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=sgd8O" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VideoOverEnterprise/~4/494813815" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/494867719" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVideoOverEnterprise%2F%7E3%2F494813815%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VideoOverEnterprise/~3/494813815/</feedburner:origLink></item>
      <item>
         <title>Presentation Zen and the Wow Effect [VoIP Survivor]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/492486483/</link>
         <description>This is a bit unrelated to VoIP, but it is something I just had to share here.
I have been reading the Presentation Zen blog for quite a while. The blogger behind the site, Garr Reynolds, is a master when it comes to presentations and what people should do with Powerpoint in the enterprise (hint - [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor"&gt;VoIP Survivor&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/voipsurvivor/?p=143</guid>
         <pubDate>Mon, 22 Dec 2008 09:56:21 -0800</pubDate>
         <content:encoded><![CDATA[<p>This is a bit unrelated to VoIP, but it is something I just had to share here.</p>
<p>I have been reading the <a rel="nofollow" target="_blank" href="http://www.presentationzen.com/">Presentation Zen</a> blog for quite a while. The blogger behind the site, Garr Reynolds, is a master when it comes to presentations and what people should do with Powerpoint in the enterprise (hint - it&#8217;s not bullet points).</p>
<p><a rel="nofollow" target="_blank" href="http://www.amazon.com/Presentation-Zen-Simple-Design-Delivery/dp/0321525655/"><img class="alignright" src="http://blog.radvision.com/images/2008/20081222-VoipSurvivor-PresentationZen-book.jpg" alt="" width="140" height="170"/></a>When it was time to make another large purchase of books from Amazon, I just had to put my hands on Garr&#8217;s book &#8220;<a rel="nofollow" target="_blank" href="http://www.amazon.com/Presentation-Zen-Simple-Design-Delivery/dp/0321525655/">Presentation Zen</a>&#8220;. When the package arrived from Amazon, this book was the first I took. I spent several days reading it, and I must say it&#8217;s the best book about presentations I&#8217;ve read so far.</p>
<p>At the time I was reading it, an opportunity to try out the techniques in the book presented itself: a visit from VP of a large company was coming up, and I was called on to talk about one of our products. The occasion called for a new presentation, as the current presentation for this product was targeted at developers and product managers. It needed something of a different nature, so I wrote a new presentation, based on the book I was reading of course.</p>
<p>The result? I felt the Wow effect - The message was conveyed the way I wanted it. The meeting was successful. And now, I have been asked to fly to another meeting to give the same presentation.</p>
<p>If you need to give presentations at work, don&#8217;t pass the opportunity of improving them - purchase this book. Use it. The time it will take you to write presentations will grow, BUT: the presentations will be leaner, and they will convey the point you are trying to make more effectively.</p>
<p>Don&#8217;t forget to read Garr&#8217;s blog while you&#8217;re at it.</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/voipsurvivor">VoIP Survivor</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li>No related posts.</li> </ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=jTgmO"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=jTgmO" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=ArFTO"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=ArFTO" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=UNKso"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=UNKso" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=AzSuo"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=AzSuo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=1lBXo"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=1lBXo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VoipSurvivor?a=Oc16O"><img src="http://feeds.radvision.com/~f/VoipSurvivor?i=Oc16O" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VoipSurvivor/~4/492411904" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/492486483" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVoipSurvivor%2F%7E3%2F492411904%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VoipSurvivor/~3/492411904/</feedburner:origLink></item>
      <item>
         <title>Being Somewhat Of A Green Prophet [Video Over Enterprise]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/492393610/</link>
         <description>Video conferencing has long been considered a &amp;#8220;green&amp;#8221; technology. As I am all for &amp;#8220;green&amp;#8221;, and I believe we all should be, I have covered the &amp;#8220;green&amp;#8221; aspects of this technology here, and I try to &amp;#8220;preach&amp;#8221; as much as I can that it shouldn&amp;#8217;t be hard being green.
&amp;#8220;The Green Prophet&amp;#8221; is an environment news [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise"&gt;Video over Enterprise&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/videooverenterprise/?p=79</guid>
         <pubDate>Mon, 22 Dec 2008 07:58:41 -0800</pubDate>
         <content:encoded><![CDATA[<p><a rel="nofollow" target="_blank" href="http://www.flickr.com/photos/bartolo100/774500066/"><img class="alignright" src="http://blog.radvision.com/images/2008/20081222-VideoOverEnterprise-Being-green.jpg" alt="" width="250" height="264"/></a>Video conferencing has long been considered a &#8220;green&#8221; technology. As I am all for &#8220;green&#8221;, and I believe we all should be, I have covered the &#8220;green&#8221; aspects of this technology <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/04/10/earth-hour-afterthought/">here</a>, and I try to &#8220;preach&#8221; as much as I can <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/09/15/it-is-not-that-easy-being-green/">that it shouldn&#8217;t be hard being green</a>.</p>
<p>&#8220;<a rel="nofollow" target="_blank" href="http://greenprophet.com/">The Green Prophet</a>&#8221; is an environment news and destination site reporting on Israel and the Middle East. It covers cleantech and green living solutions, as well as other green living issues. With a slogan like &#8220;The Middle East has never been greener&#8221; I couldn&#8217;t resist being somewhat of a green prophet, and so I wrote a guest post there about <a rel="nofollow" target="_blank" href="http://greenprophet.com/2008/12/18/5170/videoconferencing-green-technology/#more-5170">the green aspects of video conferencing</a>.</p>
<p>My bottom line: Hard times call for hard measures. And so video conferencing should be regarded as a &#8220;must have&#8221;, not as &#8220;nice to have&#8221;, as the crisis we are trying to handle is one that we MUST solve.</p>
<p>You can read the entire post <a rel="nofollow" target="_blank" href="http://greenprophet.com/2008/12/18/5170/videoconferencing-green-technology/#more-5170">here</a>. Comments, there and here, are most welcome.</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise">Video over Enterprise</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/04/10/earth-hour-afterthought/" title="The &#x00201c;green piece&#x00201d; in RADVISION logo (or: Earth Hour after-thoughts) (April 10, 2008)">The “green piece” in RADVISION logo (or: Earth Hour after-thoughts)</a> (3)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/09/15/it-is-not-that-easy-being-green/" title="IT is not that easy being green. But it should (September 15, 2008)">IT is not that easy being green. But it should</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/06/17/will-iphone-do-for-video-conferencing-what-it-has-done-for-mobile-web-browsing/" title="Will the iPhone do for video conferencing what it has done for mobile web browsing? (June 17, 2008)">Will the iPhone do for video conferencing what it has done for mobile web browsing?</a> (3)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/12/15/what-will-be-the-office-communication-means-of-choice-why-not-all/" title="What will be the Office Communication Means of Choice? Why Not All?! (December 15, 2008)">What will be the Office Communication Means of Choice? Why Not All?!</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/07/22/vrs-visually-connects-the-hearing-and-speaking-impaired-to-the-world/" title="VRS visually connects the deaf and hard of hearing to the world (July 22, 2008)">VRS visually connects the deaf and hard of hearing to the world</a> (3)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=m6QzO"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=m6QzO" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=Nzu1O"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=Nzu1O" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=YJwPo"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=YJwPo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=k8sBo"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=k8sBo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=8rmvo"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=8rmvo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=7uZTO"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=7uZTO" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VideoOverEnterprise/~4/492331078" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/492393610" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVideoOverEnterprise%2F%7E3%2F492331078%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VideoOverEnterprise/~3/492331078/</feedburner:origLink></item>
      <item>
         <title>Merry Christmas, Feliz Navidad, Happy Holidays, Happy Hanukkah, Happy Kwanzaa, and Happy New Year! [Video Over Enterprise]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/491447341/</link>
         <description>The RADVISION Blogging Team would like to wish you, your family, and your friends a happy holiday season, no matter what religious occasion you celebrate if any. We hope that you have a safe season, especially if you will be traveling. No elves or reindeers were harmed in the making of this blog post&amp;#8230; Download your free [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise"&gt;Video over Enterprise&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/videooverenterprise/?p=78</guid>
         <pubDate>Sun, 21 Dec 2008 06:30:35 -0800</pubDate>
         <content:encoded><![CDATA[<p>The <a rel="nofollow" target="_blank" href="http://blog.radvision.com/about/">RADVISION Blogging Team</a> would like to wish you, your family, and your friends a happy holiday season, no matter what religious occasion you celebrate if any. We hope that you have a safe season, especially if you will be traveling.</p>
<p align="center"><img class="alignnone" src="http://blog.radvision.com/images/2008/20081221-Christmas-greetings.jpg" alt="" width="600" height="450"/></p>
<p>No elves or reindeers were harmed in the making of this blog post&#8230;</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise">Video over Enterprise</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li>No related posts.</li> </ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=k7EHO"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=k7EHO" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=SIbyO"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=SIbyO" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=ynDyo"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=ynDyo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=Q3ywo"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=Q3ywo" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=Wvpio"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=Wvpio" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=zXCdO"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=zXCdO" border="0"></a>
</div><img src="http://feeds.radvision.com/~r/VideoOverEnterprise/~4/491407202" height="1" width="1"/><img src="http://feeds.feedburner.com/~r/rvblogs/~4/491447341" height="1" width="1"/>]]></content:encoded>
      <feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=rvblogs&amp;itemurl=http%3A%2F%2Ffeeds.radvision.com%2F%7Er%2FVideoOverEnterprise%2F%7E3%2F491407202%2F</feedburner:awareness><feedburner:origLink>http://feeds.radvision.com/~r/VideoOverEnterprise/~3/491407202/</feedburner:origLink></item>
      <item>
         <title>Like The Blog? Now Try the eBook! [Video Over Enterprise]</title>
         <link>http://feeds.feedburner.com/~r/rvblogs/~3/489023732/</link>
         <description>A few months ago I was approached by someone working at a company that hosts video solutions. These hosted videos were mentioned in a post that was published here at RADVISION about HD video and bandwidth requirements. He asked for permission to re-print the post so he could hand it out to potential customers. Obviously [...]&lt;p&gt;&lt;hr /&gt;
&lt;table border="0" width="100%" cellpadding="0"&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;&lt;img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;td width="100%"&gt;
&lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"&gt;Download your free eBook guide on Video Conferencing, the Enterprise and You&lt;/a&gt;.&lt;p&gt;Post from: &lt;a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise"&gt;Video over Enterprise&lt;/a&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;hr /&gt;&lt;/p&gt;</description>
         <guid isPermaLink="false">http://blog.radvision.com/videooverenterprise/?p=77</guid>
         <pubDate>Thu, 18 Dec 2008 10:31:47 -0800</pubDate>
         <content:encoded><![CDATA[<p>A few months ago I was approached by someone working at a company that hosts video solutions. These hosted videos were mentioned in a post that was published here at RADVISION about <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/06/24/high-definition-is-next-do-you-know-how-much-bandwidth-you-have/">HD video and bandwidth requirements</a>. He asked for permission to re-print the post so he could hand it out to potential customers. Obviously I gave him permission, as I am delighted to know what we write here goes to a big audience and helps promote the technologies that I love so much.</p>
<p>In our next bloggers meeting (yes, we have such meetings, where we drink expensive wine and discuss amazing things&#8230; NOT!) we decided it would be a great idea to have our own take on &#8220;passing out blogs&#8221;. We will collect some of the posts that were posted here in the past months and compile them together to form a book which our readers can use freely.</p>
<p><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/video-conferencing-ebook/"><img class="alignright" src="http://blog.radvision.com/images/eBook/eBook_offer.jpg" alt="" width="327" height="298"/></a>Even though I said before that <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise./2008/09/30/five-books-you-must-read-if-you-want-to-really-know-your-way-around-video/">I am a sucker for plain old books</a>, we wanted something that could be not only easily distributed, but also could be easily used by you - easily distributed, easily shared, easily read. The answer we came up with was an eBook, one that will serve as a starting point for people interested in video conferencing and for those wishing to deploy video conferencing in their organization.</p>
<p>The result, &#8220;Video Conferencing, The Enterprise and You&#8221;, is a collection of articles, based on posts that appeared in this blog as well as some new ones that haven&#8217;t been published, that discuss video processing in general, video conferencing basics (what is it, why use it, etc.), and some interesting topics in regards to the deployment of video conferencing in enterprises.</p>
<p>If you&#8217;re interested in video conferencing, if you think of deploying video conferencing or just deployed a system, if you want to know more about it before you make a decision or made a decision but want to gather more information - feel free to <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/video-conferencing-ebook/">download our eBook</a>. You can send it to colleagues and friends, share it, use it as reference, send us feedback regarding it, or ask us questions- you name it.</p>
<p>The eBook is available <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/video-conferencing-ebook/">here</a>. Enjoy.</p>
<p><hr />
<table border="0" width="100%" cellpadding="0">
<tr>
<td>
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf"><img src="http://blog.radvision.com/images/eBook/eBook_feed_64x64.jpg"></a></td>
<td width="100%">
<a rel="nofollow" target="_blank" href="http://blog.radvision.com/images/eBook/Video-Conferencing-eBook.pdf">Download your free eBook guide on Video Conferencing, the Enterprise and You</a>.<p>Post from: <a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise">Video over Enterprise</a></p>
</td>
</tr>
</table>
<hr /></p> <h4>Related posts</h4> <ul class="st-related-posts"> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/video-conferencing-ebook/" title="FREE eBook: Video Conferencing, The Enterprise and You (December 18, 2008)">FREE eBook: Video Conferencing, The Enterprise and You</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/10/08/clash-of-the-vc-titans-hdvc-vs-tp-take-2/" title="Clash of the VC Titans: HDVC vs. TP (take 2) (October 8, 2008)">Clash of the VC Titans: HDVC vs. TP (take 2)</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/10/06/clash-of-the-vc-titans-hdvc-vs-tp-take-1/" title="Clash of the VC Titans: HDVC vs. TP (take 1) (October 6, 2008)">Clash of the VC Titans: HDVC vs. TP (take 1)</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/08/11/there-is-no-such-thing-as-more-bandwidth-processing-power-or-acceptance-of-ip-based-technologies/" title="There is no such thing as more bandwidth, processing power or acceptance of IP based technologies (August 11, 2008)">There is no such thing as more bandwidth, processing power or acceptance of IP based technologies</a> (0)</li> <li><a rel="nofollow" target="_blank" href="http://blog.radvision.com/videooverenterprise/2008/08/26/the-seven-deadly-sins-of-visual-quality-over-ip/" title="The seven deadly sins of visual quality over IP (August 26, 2008)">The seven deadly sins of visual quality over IP</a> (2)</li>
</ul> <div class="feedflare">
<a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=sPBQO"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=sPBQO" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radvision.com/~f/VideoOverEnterprise?a=ZdTXO"><img src="http://feeds.radvision.com/~f/VideoOverEnterprise?i=ZdTXO" border="0"></a> <a rel="nofollow" target="_blank" href="http://feeds.radv