Red5 Hosting for Video Chat Scripts

May 16th, 2009
Comments Off

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 script hosting plans includes:

  • Unlimited RTMP hosting on Red5
    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).
  • Dedicated IP
  • Managed setup of Red5 application
  • 1 Free Script Installation
    Limited to datetopia, videogirls, videowhisper scripts only.
  • CPanel
  • Setup of RTMP application

You can also check Red5 Hosting on Videowhisper.

Premium Hosting Plans Premium 1 Premium 2 Premium 3 Premium 4
Space 10 000 Mb 15 000 Mb 30 000 Mb 50 000 Mb
Bandwidth 200 Gb 300 Gb 600 Gb 1000 Gb
Monthly Price $50 $60 $75 $100
  • Share/Save/Bookmark

VideoChat Scripts Servers, Video Chat , , , , , , , , , , , , , ,

Installed Red5 0.8 RC3 with JDK 1.6.13 on Linux

April 29th, 2009
Comments Off

Updated for JDK 1.6.14 . and Red5 0.9 (1)

Here is how we installed latest Red5 and JDK on a server with Linux CentOS . These hints can help you install on many linux VPS or Dedicated enviroments.  We mainly do software development and work from windows, so we use WinSCP and PuTTy (free software). We browsed a lot of tutorials and web pages to get instructions that installed latest versions.

First, we made sure we have all prerequisites to install the rpm:

yum install rpm-build
yum install redhat-rpm-config

JAVA INSTALLATION

We installed latest JDK from http://java.sun.com/javase/downloads/index.jsp .

Went to root/tmp folder for downloads:
cd /root/tmp

We got Java SE Development Kit, JDK 6 Update 13. We selected linux multilanguage, right clicked > properties on the jdk-6u13-linux-i586-rpm.bin and downloaded it with wget url on the server. It downloaded with a big name with parameters (ls to see after download). We use WinSCP so we right clicked, refreshed from there and then renamed the new file that showed up in the root home directory.
Update1: Downloaded jdk-6u14-linux-i586-rpm.bin instead. Make sure you install JDK and not JRE.

Made it executable and executed it:

chmod a+x jdk-6u13-linux-i586-rpm.bin
./
jdk-6u13-linux-i586-rpm.bin

Press space or enter to scroll terms and when it asks you type yes and hit enter.

We installed it on 2 servers and had to change some shortcuts on one that already had an older java, so it runs the new one. Usually if preinstalled it’s located in a java or jdk folder in /usr or /usr/local .
Update1: Make sure  the shortcuts in /usr/local point to the new locations (/usr/local/jdk to /usr/java/jdk1.6.0_14 and /usr/local/jre to /usr/java/jdk1.6.0_14/jre) .

Make sure this is the one used if you also have older versions installed:
java –version


ANT INSTALLATION

Downloaded ant (can be done from any mirror – see http://ant.apache.org/bindownload.cgi), unpacked it, moved it to a good location and added variable, shortcut.
wget http://apache.mirror.transip.nl/ant/binaries/apache-ant-1.7.1-bin.tar.gz
tar zxvf apache-ant-1.7.1-bin.tar.gz
mv apache-ant-1.7.1 /usr/local/ant
export ANT_HOME=/usr/local/ant
ln -s /usr/local/ant/bin/ant /usr/local/bin/ant

Checked ant version:
ant –version

SUBVERSION INSTALLATION

Downloading latest Red5 required subversion and we had to install perl uri first for that to work:
wget ftp://rpmfind.net/linux/dag/redhat/el2.1/en/i386/dag/RPMS/perl-URI-1.17-1.el2.rf.noarch.rpm
rpm –i perl-URI-1.17-1.el2.rf.noarch.rpm
yum install subversion

Update1: This time got  “Error: Cannot retrieve repository metadata (repomd.xml) for repository: atrpms. Please verify its path and try again” .
Solution: yum –disablerepo=atrpms install subversion .

RED5 BUILD AND INSTALLATION

Then we downloaded Red5:
svn co http://red5.googlecode.com/svn/java/server/trunk red5

Update1: This downloads latest Red5. On this installation (update1) Red5 0.9 was downloaded.

Built red5 :
cd red5
ant prepare
ant dist

Moved Red5 from home folder:
cd ..
mv red5 /opt/red5

Started Red5:
cd /opt/red5/dist
./red5.sh > start.log &

The > start.log is to have it output the logs in the file and & is to keep it running in the background.

Verified that Red5 was running:
ps aux | grep red5
This should report a long line with java and many options and this command. Check start.log if it failed to start.

We added these lines to to /etc/rc.d/rc.local so it starts on each server start:
cd /opt/red5/dist
/opt/red5/dist/red5.sh &

Make sure your run it from the right folder. The one in /opt/red5 will not work – you must run it from /opt/red5/dist/ .

When Red5 is running you should be able to access http://your-server-domain-or-ip:5080/ .

If it works first thing go to http://your-server:5080/installer/and install admin. Then to http://your-server:5080/admin/register.html and register an username and password. Then you can check application statistics anytime from http://your-server:5080/admin/ with server ip and the registered username, password.

RED 5 RESTART

We do that everytime we add or update files in the /opt/red5/dist/webapps folder – where all applications should be installed.

Usually these should work and should be used each time you add a new application.

1. Check if red5 is running:
ps aux | grep red5

2. Go to its folder and shut red5 down:
cd /opt/red5/dist
./red5-shutdown.sh

3. See if it’s still running or not:
ps aux | grep red5

4. Restart it, and also make it output the logs into a file of your choice:
./red5.sh > start.log &

5. Make sure it’s back online:
ps aux | grep red5

We also noticed that red-shutdown.sh sometimes does not close it down to allow restart when webapps are added or updated. So we run ps aux | grep red5 to see process id (first number: PID) and then run kill process id if it’s still alive.

RED5 & VIDEOWHISPER

This was done for the installation of VideoWhisper applications. To do that just download the latest videowhisper rtmp application, unzip it on your computer and copy the videowhisper folder and all its contents to/opt/red5/dist/webapps .  As verification, check that you have a /opt/red5/dist/webapps/videowhisper/WEB-INF/ folder on your server. After copying/updating this, restart the Red5 server (as explained above) and you can install the videowhisper video conferencing / live streaming scrips to use the new rtmp application.

If we forgot to mention something here, or you have any questions about this submit your inquiries on Video Whisper Contact Page or comment below.

An alternative to doing the red5 installation yourself would be to order red5 installation .

If you don’t have the time and experience to run your own server or vps, you should use managed red5 hosting .

  • Share/Save/Bookmark

VideoChat Scripts Servers, Video Streaming , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Live Streaming on WordPress by VideoWhisper

March 19th, 2009
Comments Off

The VideoWhisper Live Streaming software can now be easily used to add video broadcasting to WordPress sites and live video streams on blog pages.

To test a live demo of software on WordPress, just register a free account on this site and use the widget link from the right menu to start broadcasting.

If the user is not logged into WordPress a warning message is shown and the visitor can click that to get back to the main WordPress website for registration/login. We also included a plugin that provides a linking widget. You can use that or directly add a link to “http://www.your-site.com/videowhisper_streaming/” .

The widget also displays online broadcasters and their show names.

Live Broadcast

The watch screen logs in wordpress logged in users by adding a @ at end of username (so broadcaster can see & test his own video as a different user). Blog visitors will be able to participate in chat by providing a temporary username right in the chat application.

Live Watch and Discuss Online

A free version of this component can be downloaded for free from the WordPress Live Streaming Software page.

  • Share/Save/Bookmark

VideoChat Scripts Video Chat, Video Streaming, WordPress , , , , , , , , , ,

Red5 Support for VideoWhisper Projects

March 4th, 2009
Comments Off

VideoWhisper.com released a Red5 open source version for the RTMP application serving the VideoWhisper projects. This can be downloaded from the downloads section including java source code and eclipse project files. Application was tested with Red5 v7 Final.

Red5 is a free, open source, Java based, alternative to Adobe’s Flash Media Server. To install Red5 you need a dedicated server. You can not install Red5 on a shared hosting plan. Red5 is available both for Windows and Linux servers.

Red5 is the free solution to host RTMP if you have your own dedicated/semi-dedicated server or VPS: Download Red5 v7 Final .

VideoWhisper provides managed plans with full installation and setup including  premium rtmp hosting with dedicated ip, free installation of video streaming software (including standard fantastico scripts like wordpress/joomla), unlimited connections on Red5 starting from 10Gb space and 200Gb bandwidth at $50/month.

  • Share/Save/Bookmark

VideoChat Scripts Scripts, Video Chat, Video Streaming , , , , , , ,

Cost Cutting Offers for Video Streaming Software from VideoWhisper

February 17th, 2009
Comments Off

Great news! Any webmaster can add both video conferencing and online live video broadcasting features to his website without paying multiple license fees.  VideoWhisper runs some incredible cost cutting offers that include 2 different software licenses for the price of one ($25/month or $99/year or $250/lifetime), free installation, 4 months free hosting for lifetime licenses.

2 for 1 Promotion
Order Live Streaming or Video Conference and get an extra bonus license for the other product. For any license (purchased or rented) you can use both software packages.

Free RTMP Hosting Promotion
Purchase any full, lifetime software license and get 4 months of 15Gb/month RTMP hosting. That’s $132 worth.

Free Installation
On request we offer 1 free installation or assistance with setting up the product.

  • Share/Save/Bookmark

VideoChat Scripts Scripts, Video Chat, Video Streaming , , , , , , , , , , ,

Live Streaming, Video Broadcasting Software by VideoWhisper

February 17th, 2009
Comments Off
Live Broadcast

Live Streaming, Online Video Broadcasting Software

This live video streaming software is designed for 1 to many video broadcasting.  It is very useful for adding features like on justin tv, ustream tv, mogulus, stickam, blog tv, yahoo live or their clones .

This software was designed for 1 to many video streaming so there are 3 different interfaces:
1. Live Broadcast (for publisher),
2. Live Video Watch (for active viewers, discuss online),
3. Live Video Streaming (for passive viewers, simple live video).

Software is available with PHP source code for easy integration and as joomla component and module. Free trial available for download and testing on your own server.

  • Share/Save/Bookmark

VideoChat Scripts Scripts, Video Streaming , , , , , , , , , , , , , ,

Pay Per View Video Chat Software Update for VideoGirls.BiZ

January 11th, 2009
Comments Off

PPV Video Chat SoftwareJanuary 2009 Updates:
+ New dark themed template added: VideoGirls Dark;
+ Performer ID verification including photos;
+ Video recordings on profile page;
+ Updated live video streaming on profile page and live preview on chat page;
+ Targetted registration links for each user category (member, performer, operator, affiliate);
+ More demo videos showing the features.
See video and live demos…

Promotions
+ Hosted Yearly License for just $499 NEW (web & streaming hosting)
+ 1 Year license for just $299
+ Purchase License and get 4 months free startup hosting (web & streaming hosting).

  • Share/Save/Bookmark

VideoChat Scripts Scripts, Video Chat , , , , , , , , , , , , , , , ,

Desktop Screen Sharing with Flash Video Chat Software

January 6th, 2009

Screen sharing requires a driver to capture the screen and simulate a webcam. There are multiple webcam simulation drivers of this type, commercial and free software packages. We tested the VH Screen Capture Driver that can be downloaded for free (for personal use).

With the screen capture driver enabled you just have to select the new “webcam” in flash (right click the flash and select from settings in any flash video chat software).

Only the user that shares his screen needs to have this type of driver installed. Those running tutoring, consulation, support websites can purchase a commercial software package that includes this type of driver (i.e. Camtasia Recorder with the Live Output feature).

Most drivers allow defining a zone to capture and even rezising the output. Chat applications usually require a 320×240 webcam stream at 15fps so you should configure output to that if possible.

Another popular method for screen sharing (as seen on youtube), but less professional is pointing your webcam to the screen. :)

Here is our test with the VH Screen Capture driver:

  • Share/Save/Bookmark

VideoChat Scripts Scripts, Video Chat , , , , , , , , ,

Video Conference Plugin for WordPress by VideoWhisper

January 6th, 2009
Comments Off

To test the video conference plugin just register an account on this website and click the video conference link from the right panel.

Video Conference, Video Chat and Instant File Sharing Plugin for WordPress

+ Read more about the Video Conference WordPress Plugin on the VideoWhisper website
+ Download the Free WordPress Video Conference Edition (requires registering a free account)

WordPress  Integration

VideoWhisper.com  setup a simple integration that uses the WordPress username to login existing users into the simple php only version of their video conference software – the edition easiest to customize and integrate with any website. If the user is not logged into WordPress a warning message is shown and the visitor can click that to get back to the main WordPress website for registration/login.

VideoWhisper also  included a plugin that provides a linking widget. You can use that or directly add a link to “http://www.yoursite.com/videowhisper_conference/” .

Installation Instructions

1. Copy contents of com_videowhisper_conference\fms_applications in zip file to your applications folder in your fms installation folder. This step is not required if you use their video conference rental with hosting or managed rmtp hosting plans.
2. Copy the files from the zip file including folder structure to your public website location.
3. Fill the fms application path in videowhisper_conference/settings.php.
4. Enable the plugin and link widget or directly add the link to the videowhisper_conference folder.

  • Share/Save/Bookmark

VideoChat Scripts Scripts, Video Chat, WordPress , , , , , , , , , , ,

VideoWhisper Video Conference

January 6th, 2009
Comments Off

VideoWhisper Video Conference is a modern multiple way video chat and real time file sharing tool. It can be used stand alone or integrated to existing sites.

VideoWhisper Video Conference Software

VideoWhisper Video Conference Software

Using latest AS3 technology it provides better speed and stability compared to similar older software. Data (rooms, settings) and user interface (skins, icons, sounds) is loaded from external files that can be edited or replaced allowing webmasters and developers to easily customize the user experience.

This software is great for meetings, trainings, conferences, live events, recruiting, consultations, coaching and of course casual community chat.

  • Share/Save/Bookmark

VideoChat Scripts Scripts, Video Chat , , , , , , , , , , ,