<?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</title>
	<atom:link href="http://www.videochat-scripts.com/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, 10 Mar 2010 00:08:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Red5 Linux Server Optimizations and Tools</title>
		<link>http://www.videochat-scripts.com/red5-linux-server-optimizations-and-tools/</link>
		<comments>http://www.videochat-scripts.com/red5-linux-server-optimizations-and-tools/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 02:19:49 +0000</pubDate>
		<dc:creator>VideoChat Scripts</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[java6]]></category>
		<category><![CDATA[jdk]]></category>
		<category><![CDATA[jdk6]]></category>
		<category><![CDATA[jre]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[optimize]]></category>
		<category><![CDATA[red5]]></category>
		<category><![CDATA[restart]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=239</guid>
		<description><![CDATA[Some java optimizations to add in red5.sh :
export JAVA_OPTS=&#8221;-Xrs -Xms128M -Xmx256M -Dsun.rmi.dgc.client.gcInterval=300000 -Dsun.rmi.dgc.server.gcInterval=360000 -Djava.net.preferIPv4Stack=true -XX:+ExplicitGCInvokesConcurrent -XX:+UseConcMarkSweepGC -Xverify:none&#8221;
Assuming red5 was installed in /opt/red5/dist admin will often need to restart it or check if it&#8217;s running.
Make sure Red5 restarts: restart.sh
#!/bin/bash
#Restart the process
#First see if running
PID=`ps -eo &#8216;tty pid args&#8217; &#124; grep &#8216;red5&#8242; &#124; grep -v grep &#124; [...]]]></description>
			<content:encoded><![CDATA[<p>Some java optimizations to add in red5.sh :</p>
<blockquote><p>export JAVA_OPTS=&#8221;-Xrs -Xms128M -Xmx256M -Dsun.rmi.dgc.client.gcInterval=300000 -Dsun.rmi.dgc.<a title="server" href="http://www.videochat-scripts.com/tag/server/">server</a>.gcInterval=360000 -Djava.net.preferIPv4Stack=true -XX:+ExplicitGCInvokesConcurrent -XX:+UseConcMarkSweepGC -Xverify:none&#8221;</p></blockquote>
<p>Assuming red5 was installed in /opt/red5/dist admin will often need to <a title="restart" href="http://www.videochat-scripts.com/tag/restart/">restart</a> it or check if it&#8217;s running.</p>
<p><a title="Make" href="http://www.videochat-scripts.com/tag/make/">Make</a> sure Red5 restarts: restart.sh</p>
<blockquote><p>#!/bin/bash<br />
#Restart the process<br />
#First see if running<br />
PID=`ps -eo &#8216;tty pid args&#8217; | grep &#8216;red5&#8242; | grep -v grep | grep -v restart | tr -s &#8216; &#8216; | cut -f2 -d &#8216; &#8216;`<br />
cd /opt/red5/dist<br />
if [ -z "$PID" ]<br />
then<br />
#not running<br />
echo &#8220;Red5 was not running at `date`&#8221; &gt;&gt; /opt/red5/dist/run-restart.log<br />
else<br />
echo &#8220;Red5: $PID&#8221;<br />
#shutdown<br />
/opt/red5/dist/red5-shutdown.sh<br />
sleep 6<br />
#make sure<br />
kill $PID &gt;&gt; null<br />
sleep 2<br />
fi<br />
#start<br />
/opt/red5/dist/red5.sh &gt;&gt; /opt/red5/dist/red5.log &amp;<br />
echo &#8220;On request restarted Red5 at `date`&#8221; &gt;&gt; /opt/red5/dist/run-restart.log</p></blockquote>
<p>Mare sure Red5 process is running, if not start it: running.sh</p>
<blockquote><p>#!/bin/bash<br />
#set environment<br />
PID=`ps -eo &#8216;tty pid args&#8217; | grep &#8216;red5&#8242; | grep -v grep | grep -v running | tr -s &#8216; &#8216; | cut -f2 -d &#8216; &#8216;`<br />
if [ -z "$PID" ]<br />
then<br />
#Restart the process<br />
cd /opt/red5/dist<br />
/opt/red5/dist/red5.sh &gt;&gt; /opt/red5/dist/red5.log &amp;<br />
echo &#8220;Restarted Red5 at `date`&#8221; &gt;&gt; /opt/red5/dist/run-restart.log<br />
else<br />
#do nothing<br />
echo &#8220;Red5 is already running with PID=$PID at `date`&#8221; &gt;&gt; /opt/red5/dist/run-checked.log<br />
fi</p></blockquote>
<p><strong>Red5 Services</strong><br />
<a href="http://www.videowhisper.com/?p=Red5+Hosting">Red5 Hosting</a><br />
<a href="http://www.videowhisper.com/?p=Red5+Installation">Red5 installation on VPS &amp; Dedicated Servers (Linux / Windows)</a></p><ul class="related_post"><li>October 7, 2009 -- <a href="http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/" title="Install Red5 0.9 on Linux Ubuntu">Install Red5 0.9 on Linux Ubuntu</a></li><li>April 29, 2009 -- <a href="http://www.videochat-scripts.com/installed-red5-08-rc3-with-jdk-1613-on-linux/" title="Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux">Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux</a></li><li>January 5, 2010 -- <a href="http://www.videochat-scripts.com/install-ffmpeg-mplayer-flvtool2-yamdi-x264-theora-mp3lame-vorbis-ogg-faac/" title="Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac">Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac</a></li><li>January 13, 2010 -- <a href="http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/" title="Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server">Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server</a></li><li>July 9, 2009 -- <a href="http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/" title="Installing VideoWhisper Video Conference on your Windows Computer">Installing VideoWhisper Video Conference on your Windows Computer</a></li><li>February 10, 2010 -- <a href="http://www.videochat-scripts.com/install-geoip-php-extension/" title="Install GeoIP PHP Extension">Install GeoIP PHP Extension</a></li><li>May 16, 2009 -- <a href="http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/" title="Red5 Hosting for Video Chat Scripts">Red5 Hosting for Video Chat Scripts</a></li><li>March 4, 2009 -- <a href="http://www.videochat-scripts.com/red5-support-for-videowhisper-projects/" title="Red5 Support for VideoWhisper Projects">Red5 Support for VideoWhisper Projects</a></li><li>October 31, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-video-recorder/" title="VideoWhisper Video Recorder">VideoWhisper Video Recorder</a></li><li>August 26, 2009 -- <a href="http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/" title="Online Video Consultation Solution by VideoWhisper">Online Video Consultation Solution by VideoWhisper</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/red5-linux-server-optimizations-and-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install GeoIP PHP Extension</title>
		<link>http://www.videochat-scripts.com/install-geoip-php-extension/</link>
		<comments>http://www.videochat-scripts.com/install-geoip-php-extension/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 00:57:21 +0000</pubDate>
		<dc:creator>VideoChat Scripts</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[city]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[country]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[geoip]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[pearl]]></category>
		<category><![CDATA[pecl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=235</guid>
		<description><![CDATA[Install GeoIP C API
Change 1.4.6 to downloaded version.
wget http://geolite.maxmind.com/download/geoip/api/c/GeoIP.tar.gz
tar zxvf GeoIP.tar.gz
cd GeoIP-1.4.6
./configure
make
make check
make install
Install PHP PECL extension
wget http://pecl.php.net/get/geoip
tar zxvf geoip
cd geoip-1.0.7
phpize
./configure
make
make check
make install
Find php.ini
php &#8211;ini
Enable extension to load in php.ini:
;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
extension=geoip.so
You may need to restart HTTP server (apache) to apply changes.
Download Geo Lite City database
wget -N -q http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
gunzip GeoLiteCity.dat.gz
mv GeoLiteCity.dat /usr/local/share/GeoIP/GeoIPCity.dat
For more accurate [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Install GeoIP C API</strong><br />
Change 1.4.6 to downloaded version.</p>
<blockquote><p>wget http://geolite.maxmind.com/<a title="download" href="http://www.videochat-scripts.com/tag/download/">download</a>/geoip/api/c/GeoIP.tar.gz<br />
tar zxvf GeoIP.tar.gz<br />
cd GeoIP-1.4.6<br />
./<a title="configure" href="http://www.videochat-scripts.com/tag/configure/">configure</a><br />
make<br />
make check<br />
make install</p></blockquote>
<p><strong>Install PHP PECL <a title="extension" href="http://www.videochat-scripts.com/tag/extension/">extension</a></strong></p>
<blockquote><p>wget http://pecl.php.net/get/geoip<br />
tar zxvf geoip<br />
cd geoip-1.0.7<br />
phpize<br />
./configure<br />
make<br />
make check<br />
make install</p></blockquote>
<p>Find php.ini</p>
<blockquote><p>php &#8211;ini</p></blockquote>
<p>Enable extension to load in php.ini:</p>
<blockquote><p>;;;;;;;;;;;;;;;;;;;;;;<br />
; Dynamic Extensions ;<br />
;;;;;;;;;;;;;;;;;;;;;;<br />
extension=geoip.so</p></blockquote>
<p>You may need to restart HTTP server (apache) to apply changes.</p>
<p><strong>Download Geo Lite City database</strong></p>
<blockquote><p>wget -N -q http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz<br />
gunzip GeoLiteCity.dat.gz<br />
mv GeoLiteCity.dat /usr/local/share/GeoIP/GeoIPCity.dat</p></blockquote>
<p>For more accurate detection and production projects, buy the full GeoCity database from MaxMind.</p>
<blockquote></blockquote><ul class="related_post"><li>April 29, 2009 -- <a href="http://www.videochat-scripts.com/installed-red5-08-rc3-with-jdk-1613-on-linux/" title="Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux">Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux</a></li><li>January 5, 2010 -- <a href="http://www.videochat-scripts.com/install-ffmpeg-mplayer-flvtool2-yamdi-x264-theora-mp3lame-vorbis-ogg-faac/" title="Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac">Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac</a></li><li>January 13, 2010 -- <a href="http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/" title="Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server">Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server</a></li><li>March 1, 2010 -- <a href="http://www.videochat-scripts.com/red5-linux-server-optimizations-and-tools/" title="Red5 Linux Server Optimizations and Tools">Red5 Linux Server Optimizations and Tools</a></li><li>October 7, 2009 -- <a href="http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/" title="Install Red5 0.9 on Linux Ubuntu">Install Red5 0.9 on Linux Ubuntu</a></li><li>October 31, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-video-recorder/" title="VideoWhisper Video Recorder">VideoWhisper Video Recorder</a></li><li>September 11, 2009 -- <a href="http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/" title="Live Streaming v2 by VideoWhisper">Live Streaming v2 by VideoWhisper</a></li><li>July 9, 2009 -- <a href="http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/" title="Installing VideoWhisper Video Conference on your Windows Computer">Installing VideoWhisper Video Conference on your Windows Computer</a></li><li>August 26, 2009 -- <a href="http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/" title="Online Video Consultation Solution by VideoWhisper">Online Video Consultation Solution by VideoWhisper</a></li><li>July 28, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/" title="VideoWhisper 2 Way Video Chat Script">VideoWhisper 2 Way Video Chat Script</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/install-geoip-php-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Red5 0.9 Final Released</title>
		<link>http://www.videochat-scripts.com/red5-0-9-final-released/</link>
		<comments>http://www.videochat-scripts.com/red5-0-9-final-released/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 00:04:26 +0000</pubDate>
		<dc:creator>VideoChat Scripts</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[0.9]]></category>
		<category><![CDATA[final]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[red5]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=225</guid>
		<description><![CDATA[Get latest Red5 0.9 Final (27 January 2010) from http://code.google.com/p/red5/.
This final release includes important improvements and bug fixes.
http://code.google.com/p/red5/updates/list
Red5 Tutorials
Red5 Centos Linux Installation
Red5    Unbuntu Linux Installation
Run Red5 &#38; Wowza Flash Media Servers on Same Linux Server 
Red5 Services
Red5 Hosting
Red5 installation on VPS &#38; Dedicated Servers (Linux / Windows)
Red5 Video Streaming Software
(free to download)
Video [...]]]></description>
			<content:encoded><![CDATA[<p>Get latest Red5 0.9 Final <a name="Installers">(27 January 2010) </a>from <a href="http://code.google.com/p/red5/">http://code.google.com/p/red5/</a>.<a name="Installers"></a></p>
<p>This final release includes important improvements and bug fixes.<br />
<a href="http://code.google.com/p/red5/updates/list">http://code.google.com/p/red5/updates/list</a></p>
<p><strong>Red5 Tutorials</strong><br />
<a href="../installed-red5-08-rc3-with-jdk-1613-on-linux/">Red5 Centos Linux Installation</a><br />
<a href="../install-red5-0-9-on-linux-ubuntu/">Red5    Unbuntu Linux Installation</a><br />
<a title="Run Red5 &amp; Wowza Flash Media Servers on Same Linux Server" href="../run-red5-wowza-flash-media-servers-on-same-linux-server/">Run Red5 &amp; Wowza Flash Media Servers on Same Linux Server </a></p>
<p><strong>Red5 Services</strong><br />
<a href="http://www.videowhisper.com/?p=Red5+Hosting">Red5 Hosting</a><br />
<a href="http://www.videowhisper.com/?p=Red5+Installation">Red5 installation on VPS &amp; Dedicated Servers (Linux / Windows)</a></p>
<p><span id="more-225"></span><strong>Red5 <a title="Video Streaming" href="http://www.videochat-scripts.com/category/video-streaming/">Video Streaming</a> <a title="Software" href="http://www.videochat-scripts.com/tag/software/">Software</a></strong><br />
(free to <a title="download" href="http://www.videochat-scripts.com/tag/download/">download</a>)<br />
<strong><a href="http://www.videowhisper.com/?p=Video+Consultation"><img src="http://www.videowhisper.com/snaps/box_cns_75.png" border="0" alt="Online Video Consultation" align="absmiddle" />Video Consultation</a></strong></p>
<p><strong></strong><strong><a href="http://www.videowhisper.com/?p=2+Way+Video+Chat"><img src="http://www.videowhisper.com/snaps/box_2w_75.png" border="0" alt="2 Way Video Chat Script" align="absmiddle" />2 Way Video Chat</a></strong></p>
<p><strong></strong><strong><a href="http://www.videowhisper.com/?p=Video+Conference"><img src="http://www.videowhisper.com/snaps/box_vc_75.png" border="0" alt="Video Conference Script" align="absmiddle" />Video Conference</a></strong></p>
<p><strong></strong><strong><a href="http://www.videowhisper.com/?p=Live+Streaming"><img src="http://www.videowhisper.com/snaps/box_ls_75.png" border="0" alt="Live Streaming Video Script" align="absmiddle" />Live Streaming</a></strong></p>
<p><strong></strong><strong><a href="http://www.videowhisper.com/?p=Video+Recorder"><img src="http://www.videowhisper.com/snaps/box_vr_75.png" border="0" alt="Video Recorder Script" align="absmiddle" />Video Recorder</a></strong></p><ul class="related_post"><li>April 29, 2009 -- <a href="http://www.videochat-scripts.com/installed-red5-08-rc3-with-jdk-1613-on-linux/" title="Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux">Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux</a></li><li>January 11, 2009 -- <a href="http://www.videochat-scripts.com/pay-per-view-video-chat-software-update-for-videogirlsbiz/" title="Pay Per View Video Chat Software Update for VideoGirls.BiZ">Pay Per View Video Chat Software Update for VideoGirls.BiZ</a></li><li>March 4, 2009 -- <a href="http://www.videochat-scripts.com/red5-support-for-videowhisper-projects/" title="Red5 Support for VideoWhisper Projects">Red5 Support for VideoWhisper Projects</a></li><li>March 1, 2010 -- <a href="http://www.videochat-scripts.com/red5-linux-server-optimizations-and-tools/" title="Red5 Linux Server Optimizations and Tools">Red5 Linux Server Optimizations and Tools</a></li><li>January 13, 2010 -- <a href="http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/" title="Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server">Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server</a></li><li>October 31, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-video-recorder/" title="VideoWhisper Video Recorder">VideoWhisper Video Recorder</a></li><li>October 7, 2009 -- <a href="http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/" title="Install Red5 0.9 on Linux Ubuntu">Install Red5 0.9 on Linux Ubuntu</a></li><li>September 11, 2009 -- <a href="http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/" title="Live Streaming v2 by VideoWhisper">Live Streaming v2 by VideoWhisper</a></li><li>August 28, 2009 -- <a href="http://www.videochat-scripts.com/use-jw-player-to-play-videowhisper-application-streams/" title="Use JW Player to play VideoWhisper application streams">Use JW Player to play VideoWhisper application streams</a></li><li>August 26, 2009 -- <a href="http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/" title="Online Video Consultation Solution by VideoWhisper">Online Video Consultation Solution by VideoWhisper</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/red5-0-9-final-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run Red5 &amp; Wowza Flash Media Servers on Same Linux Server</title>
		<link>http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/</link>
		<comments>http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 04:49:10 +0000</pubDate>
		<dc:creator>VideoChat Scripts</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[1935]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[dedicated server]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash media server]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[red5]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[rtmp]]></category>
		<category><![CDATA[same]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[simultaneously]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[wowza]]></category>
		<category><![CDATA[wowza media server]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=209</guid>
		<description><![CDATA[This post shows how to install Wowza on a server where there is another RTMP server, already installed, i.e. Red5. Run 2 rtmp servers at same time and allow applications to connect on both simultaneously.
First install Wowza Media Server. Update version if necessary.
cd /root/tmp
wget http://www.wowzamedia.com/downloads/WowzaMediaServer-2-0-0/WowzaMediaServer-2.0.0.rpm.bin
chmod a+x WowzaMediaServer-2.0.0.rpm.bin
./WowzaMediaServer-2.0.0.rpm.bin
Then fill your Wowza Media Server license ( a [...]]]></description>
			<content:encoded><![CDATA[<p>This post shows how to install Wowza on a server where there is another RTMP server, already installed, i.e. Red5. Run 2 rtmp <a title="servers" href="http://www.videochat-scripts.com/category/servers/">servers</a> at same time and allow applications to connect on both <a title="simultaneously" href="http://www.videochat-scripts.com/tag/simultaneously/">simultaneously</a>.</p>
<p><span id="more-209"></span>First install <a title="Wowza Media Server" href="http://www.videochat-scripts.com/tag/wowza-media-server/">Wowza Media Server</a>. Update version if necessary.</p>
<blockquote><p>cd /root/tmp<br />
wget http://www.wowzamedia.com/downloads/WowzaMediaServer-2-0-0/WowzaMediaServer-2.0.0.rpm.bin<br />
chmod a+x WowzaMediaServer-2.0.0.rpm.bin<br />
./WowzaMediaServer-2.0.0.rpm.bin</p></blockquote>
<p>Then fill your Wowza Media Server license ( a <a href="http://www.wowzamedia.com/pro10s.php">free developer license for 10 connections</a> can be used for testing):</p>
<blockquote><p>cd /usr/local/WowzaMediaServer/bin<br />
./startup.sh</p></blockquote>
<p>Change rtmp port in /usr/local/WowzaMediaServer-2.0.0/conf/VHost.xml from 1935 to some other port not in use (i.e. 1936):</p>
<blockquote><p>&lt;Root&gt;<br />
&lt;VHost&gt;<br />
&lt;HostPortList&gt;<br />
&lt;HostPort&gt;<br />
&lt;ProcessorCount&gt;4&lt;/ProcessorCount&gt;<br />
&lt;IpAddress&gt;*&lt;/IpAddress&gt;<br />
&lt;!&#8211; Separate multiple ports with commas &#8211;&gt;<br />
&lt;!&#8211; 80: HTTP, RTMPT &#8211;&gt;<br />
&lt;!&#8211; 554: RTSP &#8211;&gt;<br />
&lt;Port&gt;<strong>1936</strong>&lt;/Port&gt;</p></blockquote>
<p>Run Wowza in background. You can also add this to /etc/rc.d/rc.local to have it running on each server restart:</p>
<blockquote><p>cd /usr/local/WowzaMediaServer/bin<br />
./startup.sh &gt; start.log &amp;</p></blockquote>
<p>Now you&#8217;ll be able to access wowza rtmp applications with <em>rtmp://your-server<strong>:1936</strong>/your-wowza-application</em> while red5 applications will be accessible the old way with  <em>rtmp://your-server/your-red5-application .<br />
</em></p>
<p>An example of 2 rtmp servers running on same linux server is the <a href="http://www.videowhisper.com/?p=Video+Recorder">VideoWhisper Webcam Video Recorder</a>.</p>
<p><a href="http://www.videowhisper.com/demos/recorder_php/">Red5 Video Recorder</a><br />
<a href="http://www.videowhisper.com/demos/recorder_wowza/">Wowza Video Recorder</a></p><ul class="related_post"><li>April 29, 2009 -- <a href="http://www.videochat-scripts.com/installed-red5-08-rc3-with-jdk-1613-on-linux/" title="Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux">Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux</a></li><li>October 7, 2009 -- <a href="http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/" title="Install Red5 0.9 on Linux Ubuntu">Install Red5 0.9 on Linux Ubuntu</a></li><li>March 1, 2010 -- <a href="http://www.videochat-scripts.com/red5-linux-server-optimizations-and-tools/" title="Red5 Linux Server Optimizations and Tools">Red5 Linux Server Optimizations and Tools</a></li><li>January 5, 2010 -- <a href="http://www.videochat-scripts.com/install-ffmpeg-mplayer-flvtool2-yamdi-x264-theora-mp3lame-vorbis-ogg-faac/" title="Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac">Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac</a></li><li>February 10, 2010 -- <a href="http://www.videochat-scripts.com/install-geoip-php-extension/" title="Install GeoIP PHP Extension">Install GeoIP PHP Extension</a></li><li>October 31, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-video-recorder/" title="VideoWhisper Video Recorder">VideoWhisper Video Recorder</a></li><li>July 28, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/" title="VideoWhisper 2 Way Video Chat Script">VideoWhisper 2 Way Video Chat Script</a></li><li>July 9, 2009 -- <a href="http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/" title="Installing VideoWhisper Video Conference on your Windows Computer">Installing VideoWhisper Video Conference on your Windows Computer</a></li><li>May 16, 2009 -- <a href="http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/" title="Red5 Hosting for Video Chat Scripts">Red5 Hosting for Video Chat Scripts</a></li><li>March 4, 2009 -- <a href="http://www.videochat-scripts.com/red5-support-for-videowhisper-projects/" title="Red5 Support for VideoWhisper Projects">Red5 Support for VideoWhisper Projects</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac</title>
		<link>http://www.videochat-scripts.com/install-ffmpeg-mplayer-flvtool2-yamdi-x264-theora-mp3lame-vorbis-ogg-faac/</link>
		<comments>http://www.videochat-scripts.com/install-ffmpeg-mplayer-flvtool2-yamdi-x264-theora-mp3lame-vorbis-ogg-faac/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 05:31:11 +0000</pubDate>
		<dc:creator>VideoChat Scripts</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[avs]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[clip]]></category>
		<category><![CDATA[codecs]]></category>
		<category><![CDATA[compatible]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[encode]]></category>
		<category><![CDATA[exec]]></category>
		<category><![CDATA[faac]]></category>
		<category><![CDATA[faad2]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[flvtool2]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[lame]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mencoder]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[mp3lame]]></category>
		<category><![CDATA[mplayer]]></category>
		<category><![CDATA[ogg]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[resize]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[sharing]]></category>
		<category><![CDATA[stream]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[suphp]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[theora]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[video sharing]]></category>
		<category><![CDATA[vorbis]]></category>
		<category><![CDATA[vps]]></category>
		<category><![CDATA[x264]]></category>
		<category><![CDATA[xvid]]></category>
		<category><![CDATA[youtube]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=159</guid>
		<description><![CDATA[This is a tutorial to enable video sharing support on Centos servers.
This should install ffmpeg, mplayer, mencoder, flvtool2, yamdi, x264, theora, mp3lame, vorbis, ogg, faac, faad2, xvid . These tools will enable on your server:

video conversion
thumbnail generation
FLV meta injection (flvtool2, yamdi)
extra codecs (x264, theora, mp3lame, vorbis, ogg, faac, faad2, xvid)

This is functional and we update [...]]]></description>
			<content:encoded><![CDATA[<p>This is a tutorial to enable <a title="video sharing" href="http://www.videochat-scripts.com/tag/video-sharing/">video sharing</a> support on Centos <a title="servers" href="http://www.videochat-scripts.com/category/servers/">servers</a>.</p>
<p>This should install ffmpeg, mplayer, mencoder, flvtool2, yamdi, x264, theora, mp3lame, vorbis, ogg, faac, faad2, xvid . These tools will enable on your server:</p>
<ul>
<li>video conversion</li>
<li>thumbnail generation</li>
<li>FLV meta injection (flvtool2, yamdi)</li>
<li>extra codecs (x264, theora, mp3lame, vorbis, ogg, faac, faad2, xvid)</li>
</ul>
<p>This is functional and we update it each time we configure a new server.<br />
Installation is done using the &#8220;root&#8221; account.</p>
<p><span id="more-159"></span><strong> </strong></p>
<p>Attention: If you copy and paste commands below, make sure &#8220;-&#8221; are not converted to &#8220;.&#8221;.  If these get converted, edit &#8220;.&#8221; back to &#8220;-&#8221;. Some options use 2 * &#8220;-&#8221;.</p>
<p><strong>GIT<br />
</strong>(required to get X264)</p>
<blockquote><p>yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel</p></blockquote>
<blockquote>
<div>cd /usr/local/src</div>
<div>wget http://www.kernel.org/pub/software/scm/git/git-1.6.0.4.tar.gz</div>
<div>
<div>tar -zxvf git-1.6.0.4.tar.gz</div>
<div>cd git-1.6.0.4</div>
<div>make prefix=/usr/local all</div>
<div>make prefix=/usr/local/ install</div>
</div>
<div>git &#8211;version</div>
</blockquote>
<div>And git manpages:</div>
<blockquote>
<div>cd /usr/local/src<br />
wget http://www.kernel.org/pub/software/scm/git/git-manpages-1.6.0.4.tar.gz<br />
cd /usr/local/share/man<br />
tar -zxvf /usr/local/src/git-manpages-1.6.0.4.tar.gz</div>
</blockquote>
<div>
<p><span style="text-decoration: underline;"><strong>YASM</strong></span></p>
<p>YASM is a modular assembler, it is required by the x264 package.</p>
<blockquote><p>cd /usr/local/src/<br />
wget http://www.tortall.net/projects/yasm/releases/yasm-0.7.0.tar.gz<br />
tar zfvx yasm-0.7.0.tar.gz<br />
cd yasm-0.7.0<br />
./configure<br />
make &amp;&amp; make install<br />
cd ..</p></blockquote>
</div>
<div><span style="text-decoration: underline;"><strong>X264</strong></span></div>
<blockquote>
<div><span style="text-decoration: underline;"><strong><br />
</strong></span>cd /usr/local/src/</div>
<div>git clone git://git.videolan.org/x264.git<br />
cd /usr/local/src/x264<br />
./configure &#8211;enable-shared &#8211;prefix=/usr<br />
make &amp;&amp;  make install</div>
</blockquote>
<div>
<div><span style="text-decoration: underline;"><strong>Essential Codecs</strong></span></div>
<blockquote>
<div>cd /usr/local/src/<br />
wget www3.mplayerhq.hu/MPlayer/releases/codecs/essential-20061022.tar.bz2<br />
tar jxvf essential-20061022.tar.bz2<br />
mkdir /usr/local/lib/codecs/<br />
mv /usr/local/src/essential-20061022/* /usr/local/lib/codecs/<br />
chmod -R 755 /usr/local/lib/codecs/</div>
</blockquote>
</div>
<div>
<p><strong><span style="text-decoration: underline;">LAME</span></strong></p>
<blockquote><p>cd /usr/local/src/<br />
wget easynews.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz<br />
tar zxvf lame-3.97.tar.gz<br />
cd /usr/local/src/lame-3.97<br />
./configure<br />
make &amp;&amp; make install</p></blockquote>
<p><strong><span style="text-decoration: underline;">OGG</span></strong></p>
<blockquote><p>cd /usr/local/src/<br />
wget downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz<br />
tar zxvf libogg-1.1.3.tar.gz<br />
cd /usr/local/src/libogg-1.1.3<br />
./configure &#8211;enable-shared &amp;&amp; make &amp;&amp; make install<br />
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig<br />
export PKG_CONFIG_PATH</p></blockquote>
<p><strong><span style="text-decoration: underline;">VORBIS</span></strong></p>
<blockquote><p>cd /usr/local/src/<br />
wget downloads.xiph.org/releases/vorbis/libvorbis-1.1.2.tar.gz<br />
tar zxvf libvorbis-1.1.2.tar.gz<br />
cd /usr/local/src/libvorbis-1.1.2<br />
./configure &amp;&amp; make &amp;&amp; make install</p></blockquote>
</div>
<div><span style="text-decoration: underline;"><strong>Theora</strong></span></div>
<blockquote>
<div>cd /usr/local/src/</div>
<div>wget http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2</div>
<div>tar jxvf libtheora-1.1.1.tar.bz2</div>
<div>cd /usr/local/src/libtheora-1.1.1</div>
<div>./configure &#8211;prefix=/usr</div>
<div>make &amp;&amp; make install</div>
</blockquote>
<div><span style="text-decoration: underline;"><strong>FAAC</strong></span></div>
<blockquote>
<div>cd /usr/local/src/</div>
<div>wget http://downloads.sourceforge.net/faac/faac-1.28.tar.gz</div>
<div>tar zxvf faac-1.28.tar.gz<br />
cd /usr/local/src/faac-1.28</div>
<div>./configure &#8211;prefix=/usr<br />
make &amp;&amp; make install</div>
</blockquote>
<div><em><em> </em></em></div>
<div>
<p><span style="text-decoration: underline;"><strong>FAAD2</strong></span></p>
<blockquote><p>cd /usr/local/src/<br />
wget http:<span class="code-comment">//downloads.sourceforge.net/faac/faad2-2.6.1.tar.gz<br />
tar zxf faad2-2.6.1.tar.gz<br />
cd faad2<br />
autoreconf -vif<br />
./configure –disable-drm –disable-mpeg4ip<br />
make &amp;&amp; make install</span></p></blockquote>
</div>
<div><span style="text-decoration: underline;"><strong>Xvid</strong></span></div>
<blockquote>
<div>cd /usr/local/src/<br />
wget http://downloads.xvid.org/downloads/xvidcore-1.2.1.tar.gz<br />
tar zxfv xvidcore-1.2.1.tar.gz<br />
cd xvidcore/build/<span class="code-keyword">generic</span><br />
./configure<br />
make &amp;&amp; make install</div>
</blockquote>
<p>Before installing ffmpeg, setup some linking for <a title="scripts" href="http://www.videochat-scripts.com/category/scripts/">scripts</a> that look in certain locations for codecs:</p>
<blockquote><p>ln -s /usr/local/lib/libavformat.so.50 /usr/lib/libavformat.so.50<br />
ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51<br />
ln -s /usr/local/lib/libavutil.so.49 /usr/lib/libavutil.so.49<br />
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0<br />
ln -s /usr/local/lib/libavformat.so.51 /usr/lib/libavformat.so.51<br />
ln -s /usr/lib/libtheora.so.0.3.10 /usr/local/lib/libtheora.so.0.3.10<br />
ln -s /usr/lib/libx264.so.80 /usr/local/lib/libx264.so.80<br />
ln -s /usr/lib/libtheora.so.0.3.10 /usr/local/lib/libtheora.so<br />
ln -s /usr/lib/libx264.so.80 /usr/local/lib/libx264.so</p></blockquote>
<p><strong><span style="text-decoration: underline;">FFMPEG </span></strong><span style="text-decoration: underline;">(download latest from SVN)</span></p>
<blockquote><p>cd /usr/local/src/<br />
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg<br />
cd /usr/local/src/ffmpeg/<br />
./configure &#8211;enable-gpl &#8211;enable-shared &#8211;enable-nonfree &#8211;enable-libmp3lame &#8211;enable-libvorbis &#8211;enable-libxvid &#8211;enable-libx264 &#8211;enable-libtheora &#8211;enable-libfaac &#8211;enable-libfaad<br />
make &amp;&amp; make install<br />
export LD_LIBRARY_PATH=/usr/local/lib/</p></blockquote>
<p>FFMPEG configure options use 2 x &#8220;-&#8221;.</p>
<p><strong><span style="text-decoration: underline;">MPLAYER</span></strong></p>
<blockquote><p>cd /usr/local/src/<br />
svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer<br />
cd /usr/local/src/mplayer<br />
svn update<br />
cd /usr/local/src/mplayer<br />
./configure &amp;&amp; make &amp;&amp; make install<br />
cd ..</p></blockquote>
<p><strong><span style="text-decoration: underline;">FLVTOOL2</span></strong><br />
First install Ruby from WHM.</p>
<blockquote><p>cd /usr/local/src/<br />
wget rubyforge.org/frs/download.php/9225/flvtool2_1.0.5_rc6.tgz<br />
tar zxvf flvtool2_1.0.5_rc6.tgz<br />
cd /usr/local/src/flvtool2_1.0.5_rc6/<br />
ruby setup.rb config<br />
ruby setup.rb setup<br />
ruby setup.rb install</p></blockquote>
<p><span style="text-decoration: underline;"><strong>YAMDI</strong></span></p>
<blockquote><p>cd /usr/local/src/<br />
wget http://downloads.sourceforge.net/project/yamdi/yamdi/1.4/yamdi-1.4.tar.gz?use_mirror=ufpr<br />
tar zxf yamdi-1.4.tar.gz<br />
cd yamdi-1.4<br />
gcc yamdi.c -o yamdi -O2 -Wall<br />
mv yamdi /usr/bin/<br />
yamdi -h</p></blockquote>
<p><span style="text-decoration: underline;"><strong>INSTALLATION RESULTS</strong></span></p>
<p>mencoder: /usr/local/bin/mencoder<br />
mplayer: /usr/local/bin/mplayer<br />
yamdi: /usr/bin/yamdi</p>
<p>Add these shortcuts to /usr/bin if you need these there by default:<br />
mencoder to /usr/local/bin/mencoder<br />
mplayer to /usr/local/bin/mplayer</p>
<p><strong>SuPHP fix<br />
</strong></p>
<p>With suphp  &#8220;env -i&#8221; is required when executing php scripts.</p>
<p>exec(&#8220;env -i /usr/<em>bin</em>/<em>php </em>&#8221; . $cmd.  &#8216;&gt;/dev/null &amp;&#8217;);</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 343px; width: 1px; height: 1px;">
<p>YASM is a modular assembler, it is required by the x264 package.</p>
<div class="wp_syntax">
<div class="code">
<pre class="bash" style="font-family: monospace;">codec:$ <span style="color: #c20cb9; font-weight: bold;">wget</span> 
http:<span style="color: #000000; font-weight: bold;">//</span>www.tortall.net<span style="color: #000000; font-weight: bold;">/</span>projects<span style="color: #000000; font-weight: bold;">/</span>yasm<span style="color: #000000; font-weight: bold;">/</span>releases<span style="color: #000000; font-weight: bold;">/</span>yasm-0.7.0.tar.gz
codec:$ <span style="color: #c20cb9; font-weight: bold;">tar</span> zfvx yasm-0.7.0.tar.gz
codec:$ <span style="color: #7a0874; font-weight: bold;">cd</span> yasm-0.7.0
codec:$ .<span style="color: #000000; font-weight: bold;">/</span>configure
codec:$ <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span>
codec:$ <span style="color: #7a0874; font-weight: bold;">cd</span> ..</pre>
</div>
</div>
</div><ul class="related_post"><li>April 29, 2009 -- <a href="http://www.videochat-scripts.com/installed-red5-08-rc3-with-jdk-1613-on-linux/" title="Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux">Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux</a></li><li>March 1, 2010 -- <a href="http://www.videochat-scripts.com/red5-linux-server-optimizations-and-tools/" title="Red5 Linux Server Optimizations and Tools">Red5 Linux Server Optimizations and Tools</a></li><li>October 7, 2009 -- <a href="http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/" title="Install Red5 0.9 on Linux Ubuntu">Install Red5 0.9 on Linux Ubuntu</a></li><li>January 13, 2010 -- <a href="http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/" title="Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server">Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server</a></li><li>February 10, 2010 -- <a href="http://www.videochat-scripts.com/install-geoip-php-extension/" title="Install GeoIP PHP Extension">Install GeoIP PHP Extension</a></li><li>October 31, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-video-recorder/" title="VideoWhisper Video Recorder">VideoWhisper Video Recorder</a></li><li>September 11, 2009 -- <a href="http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/" title="Live Streaming v2 by VideoWhisper">Live Streaming v2 by VideoWhisper</a></li><li>May 16, 2009 -- <a href="http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/" title="Red5 Hosting for Video Chat Scripts">Red5 Hosting for Video Chat Scripts</a></li><li>July 28, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/" title="VideoWhisper 2 Way Video Chat Script">VideoWhisper 2 Way Video Chat Script</a></li><li>July 9, 2009 -- <a href="http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/" title="Installing VideoWhisper Video Conference on your Windows Computer">Installing VideoWhisper Video Conference on your Windows Computer</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/install-ffmpeg-mplayer-flvtool2-yamdi-x264-theora-mp3lame-vorbis-ogg-faac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VideoWhisper Video Recorder</title>
		<link>http://www.videochat-scripts.com/videowhisper-video-recorder/</link>
		<comments>http://www.videochat-scripts.com/videowhisper-video-recorder/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 05:24:44 +0000</pubDate>
		<dc:creator>VideoChat Scripts</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[camcorder]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[fmis]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[on demand]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[record]]></category>
		<category><![CDATA[recorder]]></category>
		<category><![CDATA[recording]]></category>
		<category><![CDATA[red5]]></category>
		<category><![CDATA[rtmp]]></category>
		<category><![CDATA[save]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=150</guid>
		<description><![CDATA[
The video recorder allows site users to record webcam videos easily from website pages. This can be use on various sites to implement online features like:
+ video sharing, on demand video content
+ video messaging, video email
+ video content on member profiles, video teasers, video questionnaires
+ video comments for online posts and items, video discussions, video [...]]]></description>
			<content:encoded><![CDATA[<div>
<p><strong></strong>The video recorder allows site users to record webcam videos easily from website pages. This can be use on various sites to implement online features like:<br />
<em>+ <a title="video sharing" href="http://www.videochat-scripts.com/tag/video-sharing/">video sharing</a>, on demand video content<br />
+ video messaging, video email<br />
+ video content on member profiles, video teasers, video questionnaires<br />
+ video comments for online posts and items, video discussions, video forums</em><br />
Videos are recorded as flv files on the rtmp server and can be played trough the rtmp protocol or by http players as on youtube (if published to a web accessible location).</p>
<div>
<p align="center"><a href="http://www.videowhisper.com/?p=Video+Recorder"><img src="http://www.videowhisper.com/snaps/vr_371.jpg" border="0" alt="Web Video Recording Software" width="371" height="181" /></a></p>
<ul>
<li> Live Webcam Preview</li>
<li>Select webcam/microphone, <a title="configure" href="http://www.videochat-scripts.com/tag/configure/">configure</a> recording <a title="resolution" href="http://www.videochat-scripts.com/tag/resolution/">resolution</a>, framerate, sound rate</li>
<li>Record Video</li>
<li>Timer, Maximum recording time limit</li>
<li>Accept / Discard recording</li>
<li>Instant recording preview, Replay preview</li>
</ul>
</div>
</div>
<p>For more details check the home page of VideoWhisper <a href="http://www.videowhisper.com/?p=Video+Recorder">web based Video Recorder</a>.</p><ul class="related_post"><li>September 11, 2009 -- <a href="http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/" title="Live Streaming v2 by VideoWhisper">Live Streaming v2 by VideoWhisper</a></li><li>July 28, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/" title="VideoWhisper 2 Way Video Chat Script">VideoWhisper 2 Way Video Chat Script</a></li><li>January 5, 2010 -- <a href="http://www.videochat-scripts.com/install-ffmpeg-mplayer-flvtool2-yamdi-x264-theora-mp3lame-vorbis-ogg-faac/" title="Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac">Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac</a></li><li>August 26, 2009 -- <a href="http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/" title="Online Video Consultation Solution by VideoWhisper">Online Video Consultation Solution by VideoWhisper</a></li><li>May 16, 2009 -- <a href="http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/" title="Red5 Hosting for Video Chat Scripts">Red5 Hosting for Video Chat Scripts</a></li><li>January 13, 2010 -- <a href="http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/" title="Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server">Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server</a></li><li>October 7, 2009 -- <a href="http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/" title="Install Red5 0.9 on Linux Ubuntu">Install Red5 0.9 on Linux Ubuntu</a></li><li>July 9, 2009 -- <a href="http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/" title="Installing VideoWhisper Video Conference on your Windows Computer">Installing VideoWhisper Video Conference on your Windows Computer</a></li><li>August 28, 2009 -- <a href="http://www.videochat-scripts.com/use-jw-player-to-play-videowhisper-application-streams/" title="Use JW Player to play VideoWhisper application streams">Use JW Player to play VideoWhisper application streams</a></li><li>March 4, 2009 -- <a href="http://www.videochat-scripts.com/red5-support-for-videowhisper-projects/" title="Red5 Support for VideoWhisper Projects">Red5 Support for VideoWhisper Projects</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/videowhisper-video-recorder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Red5 0.9 on Linux Ubuntu</title>
		<link>http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/</link>
		<comments>http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 14:34:25 +0000</pubDate>
		<dc:creator>VideoChat Scripts</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[guideline]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[instructions]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jdk]]></category>
		<category><![CDATA[jre]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[red5]]></category>
		<category><![CDATA[rtmp]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[steps]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[v0.9]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=146</guid>
		<description><![CDATA[This post shows how to install latest Red5 from trunk on Linux Ubuntu.
For other linux flavors (i.e. Centos) see this comprehensive tutorial Install Red5 and JDK on Centos.

This installation was done from windows so we used  WinSCP and PuTTy (free software)  and was inspired from online tutorials.
This installation was done fluently: if you go to [...]]]></description>
			<content:encoded><![CDATA[<p>This post shows how to install latest Red5 from trunk on Linux Ubuntu.</p>
<p>For other linux flavors (i.e. Centos) see this comprehensive <a title="tutorial" href="http://www.videochat-scripts.com/tag/tutorial/">tutorial</a> <a href="http://www.videochat-scripts.com/installed-red5-08-rc3-with-jdk-1613-on-linux/">Install Red5 and JDK on Centos</a>.</p>
<p><span id="more-146"></span></p>
<p>This <a title="installation" href="http://www.videochat-scripts.com/tag/installation/">installation</a> was done from windows so we used  WinSCP and PuTTy (free software)  and was inspired from online tutorials.<br />
This installation was done fluently: if you go to other folders and do other tasks during the installation make sure you return to the right folder before resuming.</p>
<p>First installed required packages one by one:<br />
<strong>apt-get install <a title="subversion" href="http://www.videochat-scripts.com/tag/subversion/">subversion</a><br />
apt-get install java-package<br />
apt-get install sun-java6-jdk<br />
apt-get install ant</strong></p>
<p>Used arrows to browse to the Ok and confirm on jdk installation dialogs.</p>
<p>Verified installed java version:<strong><br />
java -version </strong></p>
<p>Downloaded latest Red5:<strong><br />
mkdir -p ~/svn/red5<br />
cd ~/svn/red5<br />
svn co http://red5.googlecode.com/svn/java/server/trunk red5</strong></p>
<p>Build Red5 with Ant:<br />
<strong>export JAVA_HOME=/usr/lib/jvm/java-6-sun/</strong><br />
<strong>export ANT_HOME=/usr/share/ant/</strong><br />
<strong>cd ~/svn/red5/red5<br />
/usr/share/ant/bin/ant</strong></p>
<p>Installed Red5:<strong><br />
mkdir /usr/share/red5<br />
cp -R dist/* /usr/share/red5/</strong><br />
<strong>cd /usr/share/red5<br />
chmod 755 red5.sh<br />
chmod 755 red5-shutdown.sh</strong></p>
<p>Started Red5:<br />
<strong>./red5.sh &gt; start.log &amp;</strong></p>
<p>Verified opened ports:<br />
<strong>netstat -ant</strong></p>
<p>To install a new rtmp application you need to:</p>
<ol>
<li>Copy application to /usr/share/red5/webapps (i.e. /usr/share/red5/webapps/videowhisper as explained on <a href="http://www.videowhisper.com/?p=RTMP+Applications">VideoWhisper RTMP Applications</a>)</li>
<li>Shutdown red5<br />
<strong>cd /usr/share/red5<br />
./red5-shutdown.sh</strong></li>
<li>Restart red5<strong><br />
./red5.sh</strong></li>
</ol>
<p>An alternative to doing the red5 installation yourself would be to <a href="http://www.videowhisper.com/?p=Red5+Installation">order red5 installation</a> .</p>
<p>If you don’t have the time and experience to run your own server or vps, you should use <a href="http://www.videowhisper.com/?p=Red5+Hosting">managed red5 hosting</a> .</p><ul class="related_post"><li>April 29, 2009 -- <a href="http://www.videochat-scripts.com/installed-red5-08-rc3-with-jdk-1613-on-linux/" title="Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux">Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux</a></li><li>March 1, 2010 -- <a href="http://www.videochat-scripts.com/red5-linux-server-optimizations-and-tools/" title="Red5 Linux Server Optimizations and Tools">Red5 Linux Server Optimizations and Tools</a></li><li>January 13, 2010 -- <a href="http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/" title="Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server">Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server</a></li><li>July 9, 2009 -- <a href="http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/" title="Installing VideoWhisper Video Conference on your Windows Computer">Installing VideoWhisper Video Conference on your Windows Computer</a></li><li>January 5, 2010 -- <a href="http://www.videochat-scripts.com/install-ffmpeg-mplayer-flvtool2-yamdi-x264-theora-mp3lame-vorbis-ogg-faac/" title="Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac">Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac</a></li><li>July 28, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/" title="VideoWhisper 2 Way Video Chat Script">VideoWhisper 2 Way Video Chat Script</a></li><li>August 26, 2009 -- <a href="http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/" title="Online Video Consultation Solution by VideoWhisper">Online Video Consultation Solution by VideoWhisper</a></li><li>May 16, 2009 -- <a href="http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/" title="Red5 Hosting for Video Chat Scripts">Red5 Hosting for Video Chat Scripts</a></li><li>October 31, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-video-recorder/" title="VideoWhisper Video Recorder">VideoWhisper Video Recorder</a></li><li>March 4, 2009 -- <a href="http://www.videochat-scripts.com/red5-support-for-videowhisper-projects/" title="Red5 Support for VideoWhisper Projects">Red5 Support for VideoWhisper Projects</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/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/</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>VideoChat Scripts</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[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 depending on settings) can be used [...]]]></description>
			<content:encoded><![CDATA[<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 <a title="resolution" href="http://www.videochat-scripts.com/tag/resolution/">resolution</a>, framerate, audio rate)</li>
<li><a title="fullscreen" href="http://www.videochat-scripts.com/tag/fullscreen/">fullscreen</a> 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 <a title="pay per view" href="http://www.videochat-scripts.com/tag/pay-per-view/">pay per view</a> 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><ul class="related_post"><li>August 28, 2009 -- <a href="http://www.videochat-scripts.com/use-jw-player-to-play-videowhisper-application-streams/" title="Use JW Player to play VideoWhisper application streams">Use JW Player to play VideoWhisper application streams</a></li><li>October 31, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-video-recorder/" title="VideoWhisper Video Recorder">VideoWhisper Video Recorder</a></li><li>July 28, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/" title="VideoWhisper 2 Way Video Chat Script">VideoWhisper 2 Way Video Chat Script</a></li><li>January 11, 2009 -- <a href="http://www.videochat-scripts.com/pay-per-view-video-chat-software-update-for-videogirlsbiz/" title="Pay Per View Video Chat Software Update for VideoGirls.BiZ">Pay Per View Video Chat Software Update for VideoGirls.BiZ</a></li><li>January 5, 2010 -- <a href="http://www.videochat-scripts.com/install-ffmpeg-mplayer-flvtool2-yamdi-x264-theora-mp3lame-vorbis-ogg-faac/" title="Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac">Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac</a></li><li>August 26, 2009 -- <a href="http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/" title="Online Video Consultation Solution by VideoWhisper">Online Video Consultation Solution by VideoWhisper</a></li><li>May 16, 2009 -- <a href="http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/" title="Red5 Hosting for Video Chat Scripts">Red5 Hosting for Video Chat Scripts</a></li><li>March 19, 2009 -- <a href="http://www.videochat-scripts.com/live-streaming-on-wordpress-by-videowhisper/" title="Live Streaming on WordPress by VideoWhisper">Live Streaming on WordPress by VideoWhisper</a></li><li>January 13, 2010 -- <a href="http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/" title="Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server">Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server</a></li><li>October 7, 2009 -- <a href="http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/" title="Install Red5 0.9 on Linux Ubuntu">Install Red5 0.9 on Linux Ubuntu</a></li></ul>]]></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>Use JW Player to play VideoWhisper application streams</title>
		<link>http://www.videochat-scripts.com/use-jw-player-to-play-videowhisper-application-streams/</link>
		<comments>http://www.videochat-scripts.com/use-jw-player-to-play-videowhisper-application-streams/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 01:35:12 +0000</pubDate>
		<dc:creator>VideoChat Scripts</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Video Streaming]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[advertisements]]></category>
		<category><![CDATA[broadcast]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[external]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[jw player]]></category>
		<category><![CDATA[live streaming]]></category>
		<category><![CDATA[live video]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[play]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[recommend]]></category>
		<category><![CDATA[related]]></category>
		<category><![CDATA[rtmp]]></category>
		<category><![CDATA[stream]]></category>
		<category><![CDATA[streams]]></category>
		<category><![CDATA[text ads]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[video ads]]></category>

		<guid isPermaLink="false">http://www.videochat-scripts.com/?p=109</guid>
		<description><![CDATA[With the latest VideoWhisper rtmp applications versions, webmasters can enable external player support (both for FMIS and Red5).  This can be enabled from  RTMP Application Settings.
You need to have allowPlayers=true for FMIS or acceptPlayers=true for Red5 . These settings are turned on by default.
This will allow playing a stream published by a VideoWhisper flash application [...]]]></description>
			<content:encoded><![CDATA[<p>With the latest VideoWhisper rtmp applications versions, webmasters can enable external player support (both for FMIS and Red5).  This can be enabled from  <a href="http://www.videowhisper.com/?p=RTMP+Applications#settings">RTMP Application Settings</a>.</p>
<p>You need to have allowPlayers=true for FMIS or acceptPlayers=true for Red5 . These settings are turned on by default.</p>
<p>This will allow playing a stream published by a VideoWhisper flash application like <a title="Live Streaming" href="http://www.videochat-scripts.com/live-streaming/">Live Streaming</a> with an external player like JW Player.</p>
<p>Demo:</p>
<p>Publish a stream from <a href="http://www.videowhisper.com/demos/livestreaming/">Live Streaming Demo</a> (i.e. Studio1) and then view it on <a href="http://www.videowhisper.com/demos/livestreaming/player.php?n=Studio1">JW Player</a>. Update channel name in link if you&#8217;re using a different one.</p>
<p>Here is the code to embed JW Player:</p>
<blockquote><p><span style="color: #339966;"><em>&lt;?<br />
include(&#8220;settings.php&#8221;);<br />
$stream=$_GET['n'];<br />
?&gt;<br />
&lt;object id=&#8221;player&#8221; classid=&#8221;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&#8243; name=&#8221;player&#8221; width=&#8221;328&#8243; height=&#8221;260&#8243;&gt;<br />
&lt;param name=&#8221;movie&#8221; value=&#8221;player.swf&#8221; /&gt;<br />
&lt;param name=&#8221;allowfullscreen&#8221; value=&#8221;true&#8221; /&gt;<br />
&lt;param name=&#8221;allowscriptaccess&#8221; value=&#8221;always&#8221; /&gt;<br />
&lt;param name=&#8221;flashvars&#8221; value=&#8221;file=&lt;?=</em></span><span style="color: #339966;"><em>urlencode(</em></span><span style="color: #339966;"><em>$stream)?&gt;.flv&amp;streamer=&lt;?=urlencode($rtmp_server)?&gt;&amp;autostart=true&#8221; /&gt;<br />
&lt;object type=&#8221;application/x-shockwave-flash&#8221; data=&#8221;player.swf&#8221; width=&#8221;328&#8243; height=&#8221;260&#8243;&gt;<br />
&lt;param name=&#8221;movie&#8221; value=&#8221;player.swf&#8221; /&gt;<br />
&lt;param name=&#8221;allowfullscreen&#8221; value=&#8221;true&#8221; /&gt;<br />
&lt;param name=&#8221;allowscriptaccess&#8221; value=&#8221;always&#8221; /&gt;<br />
&lt;param name=&#8221;flashvars&#8221; value=&#8221;file=&lt;?=</em></span><span style="color: #339966;"><em>urlencode(</em></span><span style="color: #339966;"><em>$stream)?&gt;.flv&amp;streamer=&lt;?=urlencode($rtmp_server)?&gt;&amp;autostart=true&#8221; /&gt;<br />
&lt;p&gt;&lt;a href=&#8221;http://get.adobe.com/flashplayer&#8221;&gt;Get Flash&lt;/a&gt; to see this player.&lt;/p&gt;<br />
&lt;/object&gt;<br />
&lt;/object&gt; </em></span></p></blockquote>
<p>Also this code could be used for playing a Studio1 stream broadcaster with VideoWhisper <a title="Live Streaming" href="http://www.videochat-scripts.com/tag/live-streaming/">Live Streaming</a>. Make sure you have swobject.js and player-viral.swf in that folder.</p>
<pre id="line1"><span style="color: #008080;">&lt;script type='text/javascript' src='swfobject.js'&gt;&lt;/script&gt;

&lt;div id='mediaspace'&gt;This text will be replaced&lt;/div&gt;

&lt;script type='text/javascript'&gt;
  var so = new SWFObject('player-viral.swf','mpl','320','320','9');
  so.addParam('allowfullscreen','true');
  so.addParam('allowscriptaccess','always');
  so.addParam('wmode','opaque');
  so.addVariable('file','Studio1.flv');
  so.addVariable('volume','5');
  so.addVariable('streamer','rtmp://your-rtmp-server/videowhisper');
  so.addVariable('autostart','true');
  so.addVariable('quality','false');
  so.write('mediaspace');
&lt;/script&gt;</span></pre>
<p><strong>JW Player Demo</strong></p>
<p><object id="player" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="250" height="200" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="player" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value="file=http://content.longtailvideo.com/videos/flvplayer.flv&amp;stretching=fill&amp;duration=27&amp;image=http://content.longtailvideo.com/videos/flvplayer.jpg" /><param name="src" value="http://player.longtailvideo.com/player.swf" /><embed id="player" type="application/x-shockwave-flash" width="250" height="200" src="http://player.longtailvideo.com/player.swf" flashvars="file=http://content.longtailvideo.com/videos/flvplayer.flv&amp;stretching=fill&amp;duration=27&amp;image=http://content.longtailvideo.com/videos/flvplayer.jpg" allowscriptaccess="always" allowfullscreen="true" name="player"></embed></object></p>
<p>Interesting Plugins:</p>
<ul>
<li>Adtonomy Text Ads Plugin lets you run your own text ads within the JW FLV Player</li>
<li><a title="Google Analytics" href="http://www.videochat-scripts.com/tag/google-analytics/">Google Analytics</a> plugin for the JW Player is designed to help you understand how well your video content is performing online</li>
<li>LongTail&#8217;s AdSolution allows you to run pre-roll, overlay mid-roll, and post-roll advertisements  in your media player</li>
<li>LongTail Video&#8217;s Adtonomy Plugin lets you run your own FLV advertisements within the JW FLV Player</li>
<li>Viral, a video distribution plugin, supports three main functions: embed, link, and recommendations</li>
<li>The D-Related plugin allows you to load in list of the related clips in XML format</li>
</ul><ul class="related_post"><li>September 11, 2009 -- <a href="http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/" title="Live Streaming v2 by VideoWhisper">Live Streaming v2 by VideoWhisper</a></li><li>October 31, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-video-recorder/" title="VideoWhisper Video Recorder">VideoWhisper Video Recorder</a></li><li>July 28, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/" title="VideoWhisper 2 Way Video Chat Script">VideoWhisper 2 Way Video Chat Script</a></li><li>March 19, 2009 -- <a href="http://www.videochat-scripts.com/live-streaming-on-wordpress-by-videowhisper/" title="Live Streaming on WordPress by VideoWhisper">Live Streaming on WordPress by VideoWhisper</a></li><li>January 13, 2010 -- <a href="http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/" title="Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server">Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server</a></li><li>January 5, 2010 -- <a href="http://www.videochat-scripts.com/install-ffmpeg-mplayer-flvtool2-yamdi-x264-theora-mp3lame-vorbis-ogg-faac/" title="Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac">Install ffmpeg mplayer flvtool2 yamdi x264 theora mp3lame vorbis ogg faac</a></li><li>October 7, 2009 -- <a href="http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/" title="Install Red5 0.9 on Linux Ubuntu">Install Red5 0.9 on Linux Ubuntu</a></li><li>August 26, 2009 -- <a href="http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/" title="Online Video Consultation Solution by VideoWhisper">Online Video Consultation Solution by VideoWhisper</a></li><li>May 16, 2009 -- <a href="http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/" title="Red5 Hosting for Video Chat Scripts">Red5 Hosting for Video Chat Scripts</a></li><li>March 4, 2009 -- <a href="http://www.videochat-scripts.com/red5-support-for-videowhisper-projects/" title="Red5 Support for VideoWhisper Projects">Red5 Support for VideoWhisper Projects</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/use-jw-player-to-play-videowhisper-application-streams/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/</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>VideoChat Scripts</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[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 or [...]]]></description>
			<content:encoded><![CDATA[<p><em>VideoWhisper <a href="http://www.videowhisper.com/?p=Video+Consultation"><strong>Video Consultation</strong></a></em> is a premium <a title="high definition" href="http://www.videochat-scripts.com/tag/high-definition/">high definition</a> video communication software designed for online <strong>video consultations</strong>, <strong>trainings</strong>, <strong>webinars</strong>, <strong>coaching</strong> and <strong>online <a title="collaboration" href="http://www.videochat-scripts.com/tag/collaboration/">collaboration</a></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 <a title="video chat" href="http://www.videochat-scripts.com/category/video-chat/">video chat</a>.</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><ul class="related_post"><li>July 28, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-2-way-video-chat-script/" title="VideoWhisper 2 Way Video Chat Script">VideoWhisper 2 Way Video Chat Script</a></li><li>July 9, 2009 -- <a href="http://www.videochat-scripts.com/installing-videowhisper-video-conference-on-your-windows-computer/" title="Installing VideoWhisper Video Conference on your Windows Computer">Installing VideoWhisper Video Conference on your Windows Computer</a></li><li>October 31, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-video-recorder/" title="VideoWhisper Video Recorder">VideoWhisper Video Recorder</a></li><li>October 7, 2009 -- <a href="http://www.videochat-scripts.com/install-red5-0-9-on-linux-ubuntu/" title="Install Red5 0.9 on Linux Ubuntu">Install Red5 0.9 on Linux Ubuntu</a></li><li>January 6, 2009 -- <a href="http://www.videochat-scripts.com/video-conference-plugin-for-wordpress-by-videowhisper/" title="Video Conference Plugin for WordPress by VideoWhisper">Video Conference Plugin for WordPress by VideoWhisper</a></li><li>January 6, 2009 -- <a href="http://www.videochat-scripts.com/videowhisper-video-conference/" title="VideoWhisper Video Conference">VideoWhisper Video Conference</a></li><li>September 11, 2009 -- <a href="http://www.videochat-scripts.com/live-streaming-v2-by-videowhisper/" title="Live Streaming v2 by VideoWhisper">Live Streaming v2 by VideoWhisper</a></li><li>May 16, 2009 -- <a href="http://www.videochat-scripts.com/red5-hosting-for-video-chat-scripts/" title="Red5 Hosting for Video Chat Scripts">Red5 Hosting for Video Chat Scripts</a></li><li>January 13, 2010 -- <a href="http://www.videochat-scripts.com/run-red5-wowza-flash-media-servers-on-same-linux-server/" title="Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server">Run Red5 &#038; Wowza Flash Media Servers on Same Linux Server</a></li><li>March 19, 2009 -- <a href="http://www.videochat-scripts.com/live-streaming-on-wordpress-by-videowhisper/" title="Live Streaming on WordPress by VideoWhisper">Live Streaming on WordPress by VideoWhisper</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.videochat-scripts.com/online-video-consultation-solution-by-videowhisper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
