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

<channel>
	<title>Video Chat Scripts &#187; Video Chat</title>
	<atom:link href="http://www.videochat-scripts.com/category/video-chat/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.videochat-scripts.com</link>
	<description>Live Video, Web2.0, Rich Media, Custom Content</description>
	<lastBuildDate>Wed, 25 Jan 2012 15:44:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>VideoWhisper RTMP Web Session Check</title>
		<link>http://www.videochat-scripts.com/videowhisper-rtmp-web-authetication-check/?&#038;owa_medium=feed&#038;owa_sid=</link>
		<comments>http://www.videochat-scripts.com/videowhisper-rtmp-web-authetication-check/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 17:55:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Video Chat]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[authorize]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[rtmp]]></category>
		<category><![CDATA[session]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[videowhisper]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=541</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/videowhisper-rtmp-web-authetication-check/' addthis:title='VideoWhisper RTMP Web Session Check '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>For sites and integrations where additional security measures are required, VideoWhisper applications support login session check on RTMP side. This is used to make sure no clients will be able to connect to rtmp server without having previously logged in with the _login.php scripts. When a new client tries to connect to RTMP server with [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/videowhisper-rtmp-web-authetication-check/' addthis:title='VideoWhisper RTMP Web Session Check' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/videowhisper-rtmp-web-authetication-check/' addthis:title='VideoWhisper RTMP Web Session Check '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p>For sites and integrations where additional security measures are required, VideoWhisper applications support login session check on RTMP side.</p>
<p>This is used to make sure no clients will be able to connect to rtmp server without having previously logged in with the _login.php scripts.<br />
When a new client tries to connect to RTMP server with a session name, rtmp application will check on the web server if that client session exists. If web server does not confirm that client logged in, rtmp server will reject the connection. RTMP server will also check for a webKey that needs to be configured same way on rtmp and web server: this will prevent connections in case of web domain hijacking.<br />
Notes<br />
- This will disable connections from external encoders (ie. FMLE) and players (ie. JwPlayer) to that rtmp address, as these will not provide a session name to check for validity.<br />
- Usually, each installation will require its own rtmp side that checks session info with that installation. Otherwise you will have to tweak scripts to check on all installations.</p>
<p>&nbsp;</p>
<h3>RTMP Configuration</h3>
<p>RTMP side web session check is currently supported for Wowza rtmp side. <a href="http://www.videowhisper.com/download.php">Download latest </a>version of Wowza rtmp side, deploy to your server and update these settings in <em>conf/videowhisper-web/Application.xml</em> :</p>
<blockquote><p>&#8230;<br />
&lt;Properties&gt;<br />
&lt;Property&gt;<br />
&lt;Name&gt;acceptPlayers&lt;/Name&gt;<br />
&lt;Value&gt;true&lt;/Value&gt;<br />
&lt;/Property&gt;<br />
&lt;Property&gt;<br />
&lt;Name&gt;webLogin&lt;/Name&gt;<br />
&lt;Value&gt;http://<strong>installation_url/</strong>rtmp_login.php?s=&lt;/Value&gt;<br />
&lt;/Property&gt;<br />
&lt;Property&gt;<br />
&lt;Name&gt;webKey&lt;/Name&gt;<br />
&lt;Value&gt;VideoWhisper&lt;/Value&gt;<br />
&lt;/Property&gt;<br />
&lt;Property&gt;<br />
&lt;Name&gt;webLogout&lt;/Name&gt;<br />
&lt;Value&gt;http://<strong>installation_url</strong>/rtmp_logout.php?s=&lt;/Value&gt;<br />
&lt;/Property&gt;<br />
&lt;/Properties&gt;<br />
&lt;/Application&gt;</p>
<p>&nbsp;</p>
<p>&nbsp;</p></blockquote>
<p>Then restart WowzaMediaServer service. For troubleshooting check Wowza access logs. If errors occur in the error logs <a href="http://www.videowhisper.com/tickets_submit.php">submit a ticket to VideoWhisper</a> about this.</p>
<h3>Web Configuration</h3>
<p>Download latest Video Conference php edition and check these integration files:<br />
<em>rtmp.inc.php</em> &#8211; stores session info when user authenticates from vc_login.php ; contains $webKey if you want to change it<br />
<em>rtmp_login.php</em> &#8211; called by rtmp server to see if a session name is valid (authenticated); also gets canKick permission to allow user to kick clients<br />
<em>rtmp_logout.php</em> &#8211; called by rtmp server when client with a session name disconnected (to cleanup session)</p>
<p>Configure settings.php to use the videowhisper-web rtmp address.</p>
<p>To integrate this on other editions or installations you will need to copy the 3 files mentioned above to installation folder and include rtmp.inc.php in the _login.php scripts that authorize the user.<br />
Other changes could be required depending on particularities of each integration.</p>
<h3>Sample Demo Configuration</h3>
<p>Installation url: <a href="http://www.videowhisper.com/demos/vc_web">http://www.videowhisper.com/demos/vc_web</a><br />
Using rtmp address: <em>rtmp://videowhisper.com/videowhisper-web</em></p>
<blockquote><p>         &lt;Property&gt;<br />
&lt;Name&gt;webLogin&lt;/Name&gt;<br />
&lt;Value&gt;http://www.videowhisper.com/demos/vc_web/rtmp_login.php?s=&lt;/Value&gt;<br />
&lt;/Property&gt;<br />
&lt;Property&gt;<br />
&lt;Name&gt;webKey&lt;/Name&gt;<br />
&lt;Value&gt;VideoWhisper&lt;/Value&gt;<br />
&lt;/Property&gt;<br />
&lt;Property&gt;<br />
&lt;Name&gt;webLogout&lt;/Name&gt;<br />
&lt;Value&gt;http://www.videowhisper.com/demos/vc_web/rtmp_logout.php?s=&lt;/Value&gt;<br />
&lt;/Property&gt;</p>
<p>&nbsp;</p></blockquote>
<p>&nbsp;</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/videowhisper-rtmp-web-authetication-check/' addthis:title='VideoWhisper RTMP Web Session Check' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/videowhisper-rtmp-web-authetication-check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up VideoWhisper RTMP on Influxis</title>
		<link>http://www.videochat-scripts.com/setting-up-videowhisper-rtmp-on-influxis/?&#038;owa_medium=feed&#038;owa_sid=</link>
		<comments>http://www.videochat-scripts.com/setting-up-videowhisper-rtmp-on-influxis/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 13:36:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Video Chat]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[deploy]]></category>
		<category><![CDATA[flash media server]]></category>
		<category><![CDATA[fmis]]></category>
		<category><![CDATA[Influxis]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[restart]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[Vhost]]></category>
		<category><![CDATA[videowhisper]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=515</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/setting-up-videowhisper-rtmp-on-influxis/' addthis:title='Setting up VideoWhisper RTMP on Influxis '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>If you have a FMS account with Influxis, use these instructions for setting up a new application: 1. Create application from Tools &#62; New App Builder or My Applications &#62; Add New Application. Use any name i.e. &#8220;videowhisper&#8221; and save generated rtmp path. 2. From Tools &#62; File Manager / File Admin edit videowhisper/main.asc file [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/setting-up-videowhisper-rtmp-on-influxis/' addthis:title='Setting up VideoWhisper RTMP on Influxis' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/setting-up-videowhisper-rtmp-on-influxis/' addthis:title='Setting up VideoWhisper RTMP on Influxis '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p>If you have a FMS account with Influxis, use these instructions for setting up a new application:</p>
<p>1. Create application from Tools &gt; New App Builder or My Applications &gt; Add New Application. Use any name i.e. &#8220;videowhisper&#8221; and save generated rtmp path.</p>
<p>2. From Tools &gt; File Manager / File Admin edit videowhisper/main.asc file and make sure it has the contents of videowhisper/main.asc (open it with notepad or other text editor). If needed select all from text editor (CTRL+A), copy (CTRL+C), move to form, select all from there (CTRL+A), paste from clipboard (CTRL+V).<br />
Get VideoWhisper FMIS rtmp side from <a href="http://www.videowhisper.com/download.php">Downloads</a> : RTMP VideoWhisper Applications &gt; FMIS .</p>
<p>3. From Account Settings &gt; Domain Permissions, Set Referring Domain(s), Add New Domain &#8211; add your domain that hosts the flash (i.e. your-domain.com)</p>
<p>4. Reset the VHost for your Influxis account so it loads new applications or updates.<br />
In your Influxis account go to My Applications &gt; FCS Administration Console: Connect then go to Maintenance : Adaptor / VHost: Restart .</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/setting-up-videowhisper-rtmp-on-influxis/' addthis:title='Setting up VideoWhisper RTMP on Influxis' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/setting-up-videowhisper-rtmp-on-influxis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Flash Live Video Streaming Applications</title>
		<link>http://www.videochat-scripts.com/configuring-flash-live-video-streaming-applications/?&#038;owa_medium=feed&#038;owa_sid=</link>
		<comments>http://www.videochat-scripts.com/configuring-flash-live-video-streaming-applications/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 12:31:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Video Chat]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[bandwith]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[latency]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[rtmp]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[streaming]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=464</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/configuring-flash-live-video-streaming-applications/' addthis:title='Configuring Flash Live Video Streaming Applications '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>Measure connection capabilities To configure flash applications streaming you will first need to determine the connections that most users will have. So test first with your connection and also request other users to test. So let&#8217;s consider this situation determined by http://www.speedtest.net (measure speed to a server close to the location of your streaming server): [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/configuring-flash-live-video-streaming-applications/' addthis:title='Configuring Flash Live Video Streaming Applications' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/configuring-flash-live-video-streaming-applications/' addthis:title='Configuring Flash Live Video Streaming Applications '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><h3><strong>Measure connection capabilities</strong></h3>
<p>To configure flash applications streaming you will first need to determine the connections that most users will have. So test first with your connection and also request other users to test.</p>
<p>So let&#8217;s consider this situation determined by <a href="http://www.speedtest.net">http://www.speedtest.net</a> (measure speed to a server close to the location of your streaming server):<br />
Download: 9.43Mbp/s<br />
Upload: 0.49Mbps</p>
<p>This looks like ADSL (in this situation upload bandwidth is 20 times lower than total connection bandwidth).</p>
<p>0.49 Mbps = 502 Kbps (kilobits per second)<br />
8 bits = 1 byte,  so that means you can upload with 62 kb/s  (kilobytes per second)</p>
<p>As you can see, usually, connection is the cause of quality and latency limitations. A server with 1000Mbps connection will theoretically be able to handle  up to 2000 x 0.49Mbps streams, so the server is not the problem with  your tests, unless you&#8217;re on a shared plan and other clients are maxing  out the resources.</p>
<h3><strong>How to configure <a href="http://www.videowhisper.com/">flash videochat applications</a>?</strong></h3>
<p>Considering you also have to upload audio and other data on that connection, you could setup camBandwidth to 49152 bytes/s (allocate for the compressed video stream).<br />
On chat systems buffering should be reduced to 0.1 so delays are minimized. On 1 way streaming systems, you can use higher buffering to increase fluency in case of connection turbulence.</p>
<h3><strong>Flash streaming applications vs Skype</strong></h3>
<p>Skype desktop application uses different technology than these web based applications limited by browser based flash technology limitations . Skype uses:<br />
-  p2p connections between all users and also uses fast 3rd users as proxies (not using server &#8211; so if you are in the same local network with the other tester or with a 3rd skype client with better connection, it uses the local bandwidth)<br />
-  better codecs to get better quality for same bandwidth (flash player currently encodes only h263 and external encoders must be used to encode h264)</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/configuring-flash-live-video-streaming-applications/' addthis:title='Configuring Flash Live Video Streaming Applications' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/configuring-flash-live-video-streaming-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Load/Embed PowerPoint PPT, PDF, PPS, DOC in Flash</title>
		<link>http://www.videochat-scripts.com/loadembed-powerpoint-ppt-pdf-pps-doc-in-flash/?&#038;owa_medium=feed&#038;owa_sid=</link>
		<comments>http://www.videochat-scripts.com/loadembed-powerpoint-ppt-pdf-pps-doc-in-flash/#comments</comments>
		<pubDate>Tue, 25 May 2010 15:34:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video Chat]]></category>
		<category><![CDATA[avi]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[doc]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[PowerPoint]]></category>
		<category><![CDATA[pps]]></category>
		<category><![CDATA[ppt]]></category>
		<category><![CDATA[wav]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=264</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/loadembed-powerpoint-ppt-pdf-pps-doc-in-flash/' addthis:title='Load/Embed PowerPoint PPT, PDF, PPS, DOC in Flash '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>Flash is limited to loading files in certain formats. To include something else in your flash chats and presentations you need to convert these files to supported formats. Most can be converted to swf. See these tools below: authorPOINT Lite Free PowerPoint to Flash Converter for PPS, PPT to SWF iSpring Free PowerPoint, YouTube to [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/loadembed-powerpoint-ppt-pdf-pps-doc-in-flash/' addthis:title='Load/Embed PowerPoint PPT, PDF, PPS, DOC in Flash' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/loadembed-powerpoint-ppt-pdf-pps-doc-in-flash/' addthis:title='Load/Embed PowerPoint PPT, PDF, PPS, DOC in Flash '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p>Flash is limited to loading files in certain formats.</p>
<p>To include something else in your flash chats and presentations you need to convert these files to supported formats. Most can be converted to swf.</p>
<p>See these tools below:</p>
<p><a href="http://www.authorgen.com/authorpoint-lite-free/powerpoint-to-flash-converter.aspx">authorPOINT Lite Free PowerPoint to Flash Converter for PPS, PPT to SWF </a></p>
<p><a href="http://www.ispringsolutions.com/free_powerpoint_to_flash_converter.html">iSpring Free PowerPoint, YouTube to SWF</a></p>
<p><a href="https://docs.google.com/viewer?pli=1">Google Docs Viewer for PowerPoint, PDF, Tiff</a></p>
<p><a href="http://www.swftools.org/">SWFtools : PDF2SWF, SWFcombine, WAV2SWF, AVI2SWF</a></p>
<p><a href="http://sourceforge.net/projects/pdfcreator/">PDFcreator : Convert any windows printable document (i.e. DOC)  to PDF</a></p>
<p><span id="more-264"></span></p>
<div style="text-align: center;">
<p><a href="http://2.bp.blogspot.com/_ULsNWMR5TwY/SYgy1kxl0hI/AAAAAAAAAQ4/0kBc56VJIr8/s1600-h/authorPOINT_screenshot_1.png" onblur="try  {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5298540857587520018" style="cursor: pointer; width: 320px; height: 233px;" src="http://2.bp.blogspot.com/_ULsNWMR5TwY/SYgy1kxl0hI/AAAAAAAAAQ4/0kBc56VJIr8/s320/authorPOINT_screenshot_1.png" border="0" alt="" /></a></p>
<div style="text-align: center;">
<p><a href="http://4.bp.blogspot.com/_ULsNWMR5TwY/SYgy-LglsyI/AAAAAAAAARA/nYS7OT2IwJs/s1600-h/iSpring_screenshot_1.png" onblur="try  {parent.deselectBloggerImageGracefully();} catch(e) {}"><img id="BLOGGER_PHOTO_ID_5298541005424145186" style="cursor: pointer; width: 320px; height: 233px;" src="http://4.bp.blogspot.com/_ULsNWMR5TwY/SYgy-LglsyI/AAAAAAAAARA/nYS7OT2IwJs/s320/iSpring_screenshot_1.png" border="0" alt="" /></a></p>
</div>
</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<h1>authorPOINT<sup><span style="font-size: xx-small;">TM</span></sup> Lite Free PowerPoint  to Flash Converter for PPS, PPT to SWF</h1>
</div>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/loadembed-powerpoint-ppt-pdf-pps-doc-in-flash/' addthis:title='Load/Embed PowerPoint PPT, PDF, PPS, DOC in Flash' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/loadembed-powerpoint-ppt-pdf-pps-doc-in-flash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Chatroulette Clone Alternative Script</title>
		<link>http://www.videochat-scripts.com/chatroulette-clone-alternative-script/?&#038;owa_medium=feed&#038;owa_sid=</link>
		<comments>http://www.videochat-scripts.com/chatroulette-clone-alternative-script/#comments</comments>
		<pubDate>Tue, 04 May 2010 14:26:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Video Chat]]></category>
		<category><![CDATA[alternative]]></category>
		<category><![CDATA[anoChat]]></category>
		<category><![CDATA[cam]]></category>
		<category><![CDATA[CamStumble]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[ChatClock]]></category>
		<category><![CDATA[ChatHopper]]></category>
		<category><![CDATA[ChatPig]]></category>
		<category><![CDATA[ChatRevolve]]></category>
		<category><![CDATA[chatroulette]]></category>
		<category><![CDATA[ChatRT]]></category>
		<category><![CDATA[clone]]></category>
		<category><![CDATA[FaceBuzz]]></category>
		<category><![CDATA[FaceRoulette]]></category>
		<category><![CDATA[FlipChat]]></category>
		<category><![CDATA[HeyPeople]]></category>
		<category><![CDATA[HeyReddit]]></category>
		<category><![CDATA[ManRoulette]]></category>
		<category><![CDATA[NastySpace]]></category>
		<category><![CDATA[Omegle]]></category>
		<category><![CDATA[p2p]]></category>
		<category><![CDATA[patchRoulette]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[RandomCams]]></category>
		<category><![CDATA[rtmfp]]></category>
		<category><![CDATA[rtmp]]></category>
		<category><![CDATA[RudeRoulette]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[ShufflePeople]]></category>
		<category><![CDATA[Stickam-Shuffle]]></category>
		<category><![CDATA[StirChat]]></category>
		<category><![CDATA[TinyChat]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[videochat]]></category>
		<category><![CDATA[videoEncounter]]></category>
		<category><![CDATA[webcam]]></category>
		<category><![CDATA[ZapandTalk]]></category>
		<category><![CDATA[Zupyo]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=260</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/chatroulette-clone-alternative-script/' addthis:title='Chatroulette Clone Alternative Script '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>VideoWhisper released a turnkey chatroulette script edition for the 2 Way P2P Video Chat script. See the advanced chat roulette turnkey script in action on Video Encounter, a new live website that brings you face-to-face, via webcam, with an endless stream of random strangers all over the world. You need to bring some friends for [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/chatroulette-clone-alternative-script/' addthis:title='Chatroulette Clone Alternative Script' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/chatroulette-clone-alternative-script/' addthis:title='Chatroulette Clone Alternative Script '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p><strong> </strong></p>
<div>
<p>VideoWhisper released a turnkey <a href="http://www.videowhisper.com/?p=Chat+Roulette+Clone+Script">chatroulette  script</a> edition for the 2 Way P2P Video Chat script.</p>
</div>
<div><a href="http://www.videoencounter.com/"><img title="Click to see Chat Roulette Clone Script in Action" src="http://www.videowhisper.com/snaps/2wvc3r_371x275.jpg" border="0" alt="Click to  see Chat Roulette Clone Script in Action" width="371" height="275" align="left" /></a></div>
<div>
<p>See the advanced chat roulette turnkey script in action on <a href="http://www.videoencounter.com/" target="_blank">Video Encounter</a>,  a new live website that brings you face-to-face, via webcam, with an  endless stream of random strangers all over the world. You need to bring  some friends for testing if no one is online.</p>
<p>Also see <a href="http://www.videoencounter.com/webmasters">Embed Chat  Roulette</a> page and <a href="http://www.videoencounter.com/logs">Webcam  Chat Logs with Snapshots</a> .</p>
<p>Also if you are a Facebook user, see the <a href="http://apps.facebook.com/videoencounter/" target="_blank">Video  Encounter as Facebook Application</a> (downsized to fit) and <a href="http://www.facebook.com/apps/application.php?id=362119395765" target="_blank">Video Encounter  Application Page on Facebok</a>.<span id="more-260"></span></p>
<p>There is also a <a href="http://www.videowhisper.com/?p=Joomla+Chatroulette+Clone">Joomla  chatroulette clone</a> that is easy to install as Joomla component and  provides simple implementation for Joomla users.</p>
<p>Why is this script better than regular chat roulette  clones?</p>
<ul>
<li>When direct P2P connection is not possible due to user  network/firewall settings the streaming is done trough a flash media  server. The site is available to  users that can&#8217;t connect on standard  chat roulette sites because of their firewalls or internet providers.</li>
<li>Big webcam panels on top of layout, because picture is what&#8217;s  important on a webcam chat site.</li>
<li>Sounds when other user enters, leaves and buzz button: very useful  when user is waiting or chat window remains in background.</li>
<li>Users have the option to login with Facebook and reserve their  username on the website. This allows users to chat with their favourite  username / nickname.</li>
<li>Facebook application so facebook users can easily access it, share  it and become fans.</li>
<li>Webmasters can embed the chat interface on their websites  contributing to the viral promotion of the website.</li>
<li>Chat logs with webcam snapshots &#8211; great content for people to  share with their friends (viral content, too).</li>
<li>Many chat roulette clones don&#8217;t currently work fine and will never  work on active production sites because of amateur developers.  VideoWhisper is dedicated to developing and improving video  communication projects, as it can be seen on this website. This means  real support and further development from experts in this type of  software.</li>
<li>All chat roulette clones are based on Adobe Stratus, a free  developer service which does not support big commercial projects &#8211;  meaning most sites will not be able to generate direct revenue. Because  the chat application implemented here also works with multiple popular  RTMP servers, your site will function even if it turns into a big money  generating commercial business and no RTMFP server will be available at  that moment.</li>
</ul>
</div>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/chatroulette-clone-alternative-script/' addthis:title='Chatroulette Clone Alternative Script' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/chatroulette-clone-alternative-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live Streaming v2 by VideoWhisper</title>
		<link>http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/?&#038;owa_medium=feed&#038;owa_sid=</link>
		<comments>http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 04:33:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Video Chat]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[broadcast]]></category>
		<category><![CDATA[capture]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[framerate]]></category>
		<category><![CDATA[fullscreen]]></category>
		<category><![CDATA[jpg]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[live streaming]]></category>
		<category><![CDATA[pay per minute]]></category>
		<category><![CDATA[pay per view]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[ppm]]></category>
		<category><![CDATA[ppv]]></category>
		<category><![CDATA[resolution]]></category>
		<category><![CDATA[rtmp]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[snapshot]]></category>
		<category><![CDATA[stream]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[timer]]></category>
		<category><![CDATA[ugprade]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=140</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/' addthis:title='Live Streaming v2 by VideoWhisper '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>VideoWhisper.com upgraded the Live Streaming application bringing several improvements and optimizations requested by users. Some of the improvements: advanced webcam settings (change realtime resolution, framerate, audio rate) fullscreen button for video watching interface fullscreen on click for embedded plain video stream interface generate updated jpg snapshots for each live stream timers (displayed on each interface [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/' addthis:title='Live Streaming v2 by VideoWhisper' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/' addthis:title='Live Streaming v2 by VideoWhisper '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p>VideoWhisper.com upgraded the <a href="http://www.videowhisper.com/?p=Live+Streaming">Live Streaming</a> application bringing several improvements and optimizations requested by users.</p>
<p><img class="alignright" src="http://www.videowhisper.com/snaps/ls_371x275.jpg" alt="Live Broadcast" width="371" height="275" /></p>
<p>Some of the improvements:</p>
<ul>
<li>advanced webcam settings (change realtime resolution, framerate, audio rate)</li>
<li>fullscreen button for video watching interface</li>
<li>fullscreen on click for embedded plain video stream interface</li>
<li>generate updated jpg snapshots for each live stream</li>
<li>timers (displayed on each interface depending on settings) can be used to control access, integrate in pay per view systems</li>
<li>multiple new options and parameters passed from script side</li>
</ul>
<p>Also some RTMP application improvements should be mentioned like external player support and live video archiving as FLV for the Red5 application.</p>
<p>Upgrades are available for download on VideoWhisper.com and do not involve any costs for free or paid licenses.</p>
<p>First edition available with the upgrade is the PHP edition. The rest should follow shortly.</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/' addthis:title='Live Streaming v2 by VideoWhisper' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Video Consultation Solution by VideoWhisper</title>
		<link>http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/?&#038;owa_medium=feed&#038;owa_sid=</link>
		<comments>http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 01:06:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Video Chat]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[2 way]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[coaching]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[consultation]]></category>
		<category><![CDATA[e-learning]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[high definition]]></category>
		<category><![CDATA[inquirer]]></category>
		<category><![CDATA[instant]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[moderation]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[red5]]></category>
		<category><![CDATA[room]]></category>
		<category><![CDATA[seminar]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[speaker]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[video conference]]></category>
		<category><![CDATA[videopresence]]></category>
		<category><![CDATA[webcam]]></category>
		<category><![CDATA[webinar]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=103</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/' addthis:title='Online Video Consultation Solution by VideoWhisper '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>VideoWhisper Video Consultation is a premium high definition video communication software designed for online video consultations, trainings, webinars, coaching and online collaboration. It was designed for few to many 2 way moderated video communication. Moderators control what participant is displayed on main screen (speaker) and can also add an additional participant (inquirer) to ask questions [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/' addthis:title='Online Video Consultation Solution by VideoWhisper' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/' addthis:title='Online Video Consultation Solution by VideoWhisper '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p><em>VideoWhisper <a href="http://www.videowhisper.com/?p=Video+Consultation"><strong>Video Consultation</strong></a></em> is a premium high definition video communication software designed for online <strong>video consultations</strong>, <strong>trainings</strong>, <strong>webinars</strong>, <strong>coaching</strong> and <strong>online collaboration</strong>.</p>
<p>It was designed for few to many 2 way moderated video communication. Moderators control what participant is displayed on main screen (speaker) and can also add an additional participant (inquirer) to ask questions or assist. Participants can change their public status (i.e. request to speak), upload and download room files, text and video chat.</p>
<div>
<p><a href="http://www.videowhisper.com/?p=Video+Consultation"><img src="http://www.videowhisper.com/snaps/vcons_371x275.jpg" border="0" alt="Online Video Consultation Software" width="371" height="274" /></a></div>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/' addthis:title='Online Video Consultation Solution by VideoWhisper' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VideoWhisper 2 Way Video Chat Script</title>
		<link>http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/?&#038;owa_medium=feed&#038;owa_sid=</link>
		<comments>http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 01:41:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Video Chat]]></category>
		<category><![CDATA[1 on 1]]></category>
		<category><![CDATA[2 way]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[audion]]></category>
		<category><![CDATA[av]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[communicate]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[demonstrate]]></category>
		<category><![CDATA[emoticons]]></category>
		<category><![CDATA[encounter]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[hd]]></category>
		<category><![CDATA[high definition]]></category>
		<category><![CDATA[instant]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[meeting]]></category>
		<category><![CDATA[one on one]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[quality]]></category>
		<category><![CDATA[red5]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[rtmp]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[telepresence]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[timer]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[videochat]]></category>
		<category><![CDATA[videopresence]]></category>
		<category><![CDATA[videowhisper]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=98</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/' addthis:title='VideoWhisper 2 Way Video Chat Script '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>VideoWhisper 2 Way Video Chat is a premium high definition video communication software designed for instant 1 on 1 online video conferencing. It&#8217;s a solution for conducting easy to setup face to face meetings without leaving your office or home. It&#8217;s the easiest and most cost-effective way to meet somebody and discuss one on one. [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/' addthis:title='VideoWhisper 2 Way Video Chat Script' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/' addthis:title='VideoWhisper 2 Way Video Chat Script '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p><a href="http://www.videowhisper.com/?p=2+Way+Video+Chat"><img src="http://www.videowhisper.com/snaps/2wvc_371x275.jpg" border="0" alt="One on One 2 Way Video Chat Script" width="250" align="right" /></a><br />
<em>VideoWhisper 2 Way Video Chat</em> is a premium high definition video communication software designed for instant 1 on 1 online video conferencing. It&#8217;s a solution for conducting easy to setup face to face meetings without leaving your office or home. It&#8217;s the easiest and most cost-effective way to meet somebody and discuss one on one. Here are 12 ways to use this:</p>
<ol>
<li><em>have meetings on short notice with individuals in faraway places</em></li>
<li><em>conduct sales presentations without traveling</em></li>
<li><em>manage  employees remotely when you are not in the office</em></li>
<li><em>bring any partner or specialist employee  virtually to any meeting you physically attend to</em></li>
<li><em>demonstrate products and software without traveling</em></li>
<li><em>train customers, partners and employees on remote locations</em></li>
<li><em>have employees work from home even if they are on another continent</em></li>
<li><em>communicate from many business airlines that provide internet while mobiles are not functional</em></li>
<li><em>talk face to face to  new employees or business partners from far away locations before doing any travelling</em></li>
<li><em>communicate face to face from  anywhere you find an internet connection for your laptop</em></li>
<li><em> remote professional consultations and advice</em></li>
<li><em>avoid dangerous or just boring locations and persons</em></li>
</ol>
<p>Read more about the <a href="http://www.videowhisper.com/?p=2+Way+Video+Chat">2 Way Video Chat</a> software&#8230;</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/' addthis:title='VideoWhisper 2 Way Video Chat Script' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing VideoWhisper Video Conference on your Windows Computer</title>
		<link>http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/?&#038;owa_medium=feed&#038;owa_sid=</link>
		<comments>http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 10:30:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Video Chat]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[127.0.0.1]]></category>
		<category><![CDATA[cam]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jdk]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[red5]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video conference]]></category>
		<category><![CDATA[videowhisper]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[webcam]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xampp]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=93</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/' addthis:title='Installing VideoWhisper Video Conference on your Windows Computer '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>This was originally posted on http://www.videowhisper.com/forum.php?ftid=58&#38;t=Basic-install by rustynails and explains how to installing VideoWhisper Video Conference and all required servers on your Windows computer. 1} A computer WINDOWS XP 2} A HOME WEB SERVER I used XAMPP XAMPP.org Placed in same folder as program files C:\xampp 3} JAVA JDK SE Download from http://java.sun.com/ placed in [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/' addthis:title='Installing VideoWhisper Video Conference on your Windows Computer' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/' addthis:title='Installing VideoWhisper Video Conference on your Windows Computer '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p>This was originally posted on <a href="http://www.videowhisper.com/forum.php?ftid=58&amp;t=Basic-install">http://www.videowhisper.com/forum.php?ftid=58&amp;t=Basic-install</a> by rustynails and explains how to installing VideoWhisper Video Conference and all required servers on your Windows computer.</p>
<p><span id="more-93"></span></p>
<p>1} A computer<br />
WINDOWS XP</p>
<p>2} A HOME WEB SERVER<br />
I used XAMPP XAMPP.org<br />
Placed in same folder as program files<br />
C:\xampp</p>
<p>3} JAVA JDK SE<br />
Download from <a href="http://java.sun.com/" target="_blank">http://java.sun.com/</a><br />
placed in programs<br />
C:\Program Files\Java</p>
<p>Use installer<br />
and set JAVA_HOME</p>
<p>My setup</p>
<p>NAME JAVA_HOME<br />
VALUE C:\Program Files\Java\jdk1.6.0_13<br />
Don&#8217;t use &#8221; \bin &#8221; on end for setting JAVA_HOME</p>
<p>Name JAVA_VERSION<br />
VALUE 1.6</p>
<p>ADD to &#8220;path&#8221;<br />
;C:\Program Files\Java\jdk1.6.0_13\bin</p>
<p>TIP: utube has a tutorial for this.<br />
key words<br />
&#8221; Installing the Java Development Kit for Windows &#8221;</p>
<p>4} RED5 flash server Final Version 7 java6 with installer<br />
Download at RED5 site</p>
<p>Placed in same folder as programs.<br />
my set up<br />
C:\Red5</p>
<p>Set up RED5, run test page shut RED5 off and then load<br />
video whisper.<br />
RED5 Test address<br />
<a href="http://127.0.0.1:5080/" target="_blank">http://127.0.0.1:5080/</a></p>
<p>5} Download Video whisper stand alone free script APPROX 431 KB</p>
<p>Video whisper is placed in<br />
C:\xampp\htdocs\Videowhisper</p>
<p>Set your ip address in settings.php<br />
C:\xampp\htdocs\vc_php\settings.php</p>
<p>M ine &lt;?<br />
$rtmp_server=&#8221;rtmp://my-ip-address/videowhi sper&#8221;;<br />
?&gt;</p>
<p>Tip<br />
The name of the folder you place in XAMPP is &#8220;vc_php&#8221;<br />
IT&#8217;s the folder vc_php/contents<br />
not the folder vc_php/vc_php/contents</p>
<p>6} Also the videowhisper_red5 script APPROX 17 KB<br />
MY set up<br />
C:\Red5\webapps\videowhisper</p>
<p>Tip<br />
The name of the folder you place in webapps is videowhisper<br />
It&#8217;s the folder inside the extracted videowhisper_red5</p>
<p>Next<br />
Delete this part from RED5 web.XML. You will be disconected<br />
from server if you don&#8217;t.</p>
<p>&lt;param-name&gt;log4jConfigLocation&lt;/param- name&gt;<br />
&lt;param-value&gt;/WEB-INF/log4j.properties&lt; /param-value&gt;<br />
&lt;/context-param&gt;</p>
<p>The Location is<br />
C:\Red5\webapps\videowhisper\WEB-INF\web.XML</p>
<p>Once you&#8217;re done restart RED5<br />
Refresh XAMPP<br />
Type in your IP adress<br />
<a href="http://your-ip-address/vc_php/" target="_blank">http://your-ip-address/vc_php/</a></p>
<p>To Test locally<br />
<a href="http://127.0.0.1/vc_php/" target="_blank">http://127.0.0.1/vc_php/</a></p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/' addthis:title='Installing VideoWhisper Video Conference on your Windows Computer' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Red5 Hosting for Video Chat Scripts</title>
		<link>http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/?&#038;owa_medium=feed&#038;owa_sid=</link>
		<comments>http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/#comments</comments>
		<pubDate>Sat, 16 May 2009 09:33:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Video Chat]]></category>
		<category><![CDATA[dedicated ip]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[managed]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[red]]></category>
		<category><![CDATA[red5]]></category>
		<category><![CDATA[rtmp]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[videochat]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=70</guid>
		<description><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/' addthis:title='Red5 Hosting for Video Chat Scripts '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div>VideoGirls BiZ offers premium red5 hosting plans for video chat scripts. The Red5 setup is 100% managed so you do not have anything to worry about as on vps hosts where you have to install each application yourself and restart the service or even configure, upgrade, install new linux software trough the shell. Premium videochat [...]<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/' addthis:title='Red5 Hosting for Video Chat Scripts' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></description>
			<content:encoded><![CDATA[<div class="addthis_toolbox addthis_default_style " addthis:url='http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/' addthis:title='Red5 Hosting for Video Chat Scripts '  ><a class="addthis_button_facebook_like" fb:like:layout="button_count"></a><a class="addthis_button_tweet"></a><a class="addthis_counter addthis_pill_style"></a></div><p><a href="http://www.videogirls.biz/">VideoGirls BiZ</a> offers premium <a href="http://www.videogirls.biz/view.php?p=Videochat+Script+Hosting">red5 hosting plans</a> for video chat scripts. The Red5 setup is 100% managed so you do not have anything to worry about as on vps hosts where you have to install each application yourself and restart the service or even configure, upgrade, install new linux software trough the shell.</p>
<p><span id="more-70"></span>Premium videochat script hosting plans includes:</p>
<ul>
<li>Unlimited RTMP hosting on Red5<br />
<span style="color: #808080;">That means streaming can use as much bandwidht as available per plan and there are no limitations for the number of simultaneous connections (other that server load).</span></li>
<li>Dedicated IP</li>
<li>Managed setup of Red5 application</li>
<li>1 Free Script Installation<br />
<span style="color: #808080;"><em>Limited to datetopia, videogirls, videowhisper scripts only.</em></span></li>
<li>CPanel</li>
<li>Setup of RTMP application</li>
</ul>
<p>You can also check <a href="http://www.videowhisper.com/?p=Red5+Hosting">Red5 Hosting</a> on Videowhisper.</p>
<table border="0" cellspacing="1" cellpadding="5" align="center">
<tbody>
<tr>
<td align="center"><strong>Premium Hosting Plans</strong></td>
<td align="center" bgcolor="#64ca8f"><span style="color: #ffffff;"><strong>Premium 1</strong></span></td>
<td align="center" bgcolor="#7cd67a"><span style="color: #ffffff;"><strong>Premium 2</strong></span></td>
<td align="center" bgcolor="#b1d088"><span style="color: #ffffff;"><strong>Premium 3</strong></span></td>
<td align="center" bgcolor="#e0af8f"><span style="color: #ffffff;"><strong>Premium 4</strong></span></td>
</tr>
<tr>
<td align="right" bgcolor="#f0f0f0">Space</td>
<td align="center" bgcolor="#e1ffed">10 000 Mb</td>
<td align="center" bgcolor="#e2ffe1">15 000 Mb</td>
<td align="center" bgcolor="#f2ffe1">30 000 Mb</td>
<td align="center" bgcolor="#ffefdf">50 000 Mb</td>
</tr>
<tr>
<td align="right" bgcolor="#f0f0f0">Bandwidth</td>
<td align="center" bgcolor="#e1ffed">200 Gb</td>
<td align="center" bgcolor="#e2ffe1">300 Gb</td>
<td align="center" bgcolor="#f2ffe1">600 Gb</td>
<td align="center" bgcolor="#ffefdf">1000 Gb</td>
</tr>
<tr>
<td align="right" bgcolor="#f7f7ea">Monthly Price</td>
<td align="center" bgcolor="#e1ffed">$50</td>
<td align="center" bgcolor="#e2ffe1">$60</td>
<td align="center" bgcolor="#f2ffe1">$75</td>
<td align="center" bgcolor="#ffefdf">$100</td>
</tr>
</tbody>
</table>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/' addthis:title='Red5 Hosting for Video Chat Scripts' ><a class="addthis_button_facebook_like"></a><a class="addthis_button_google_plusone"></a><a class="addthis_button_twitter"></a><a class="addthis_button_tweetmeme"></a><a class="addthis_button_google"></a><a class="addthis_button_facebook"></a><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_compact"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

