Install Red5 Media Server on Ubuntu / Debian

Red5 is free media server based on Java and other open source frameworks. It support FLV, F4V, MP4, 3GP, MP3, F4A, M4A, AAC and protocols like RTMP, RTMPT, RTMPS, RTMPE. Install Red5 Media server # apt-get install red5-server Red5 Need below ports open in firewall / iptable RTMP: 1935 Debug proxy: 1936 HTTP servlet: 5080 … Read more

User Agent Parsing with PHP

Tobie Langel’s ua-parser, a great library which provides simple UA parsing in PHP, JavaScript and Python. <?php require_once ‘uaparser.php’; $ua = $_SERVER[‘HTTP_USER_AGENT’]; $parser = new UAParser(); $result = $parser->parse($ua); echo ‘<pre>’; print_r($result); ?> Find more libraries here… https://github.com/rjd22/ua-parser/tree/master/php https://github.com/Synchro/ua-parser

MistServer PHP API for Live Stream

MistServer is a highly versatile, lightweight, customizable open-source multi-standard multimedia server. MistServer configuration is easy to use for full CDN solutions applications. Hope you already read our article to Install MistServer MistServer API provides a Server API and a Management API. You can find MistServer PHP API Examples Here Note: Make sure port 4242 used … Read more

Select2Array

It’s easy to convert PHP Array to Select Dropdown Box… you need to loop for all element in array to display as dropdown. But may be you ever think for reverse process. Yes, it’s also easy! You need to scrape / crawl Select box HTML to get PHP Array back from HTML Select Box. Please … Read more

Install AWStats with GeoIP Plugin

AWStats is a free analytic tool that generates web, streaming, ftp or mail server statistics, graphically. There are many log analyzer but AWStats is open source Web analytics reporting tool, It can analyze log files from Apache, WebStar, IIS. Installing AWStats on ubuntu 12.04 # apt-get install awstats Configuring for yourdomain.com replace yourdomain.com with your … Read more

Install Red5 1.0.1 on CentOS release 6.5 (Final) 64-Bit

Contact us for Red5 HLS Plugin Red5 MySQL Authentication Plugin Wowza MySQL Authentication Plugin 1. Install Java # yum -y install java-1.6.0-openjdk java-1.6.0-openjdk-devel 2. Install Ant # cd /usr/local/src # wget http://archive.apache.org/dist/ant/binaries/apache-ant-1.8.2-bin.tar.gz # tar zxvf apache-ant-1.8.2-bin.tar.gz # mv apache-ant-1.8.2 /usr/local/ant 3. Export path for Ant and Java # export ANT_HOME=/usr/local/ant # export JAVA_HOME=/usr/lib/jvm/java # export … Read more

Live video stream event for online Temple or Church

Wowza / Red5 Streaming Live Video with Flash Media Live Encoder Wowza Live Stream Countdown Requirements – A computer running Windows or Apple operating system – Software “Flash Media Live Encoder (Adobe)” – Streaming Server (Wowza/Red5/FMS) – Video input that is recognized by the operating system (i.e. USB camera) – Video player: VLC or Web … Read more

phpMyStream

phpMyStream is media re-stream panel, it use FFmpeg & rtmpdump linux utilities to take source as input then publish to other server like Red5 or Wowza. phpMyStream Server Requirement – Web Server With Apache, PHP, MySQL – RTMPDump – FFmpeg – RTMP Server (Wowza, Red5, Nginx) RTMPDump Help FFmpeg Help Make Server for phpMyStream Install … Read more

Shoutcast V2 aacPlus AAC+ Player

MP3 Radio Streams (Shoutcast/Icecast) are best for Radio Streaming with best bit-rate, but MP3 Streaming need license to broadcast source streams. Radio MP3 music globally play on all devices & platforms. MP3 live radio streaming easily work over HTML5/HTTP. Whereas AAC+ live radio streaming work on over RTMP. It need flash streaming via RTMP. Shoutcast … Read more

Wowza Live Stream Countdown

<?php function timeElapsed($originalTime){         $timeElapsed=$originalTime-time(); return $timeElapsed; } //$Details[‘datetimepicker’] = “06/26/2014 11:42 am”; // coming from database $dtp = timeElapsed( strtotime($Details[‘datetimepicker’]) ); ?> var myCountdownTest = new Countdown({ time: <?php echo $dtp; ?>, width : 300, height : 50, style:”boring”, rangeHi:”day”, labelText : { second : “SECONDS”, minute : “MINUTES”, hour : “HOURS”, day : “DAYS”, … Read more