FFMPEG make Video Lyrics using JPG MP3 SRT File

FFMPEG make Video Lyrics using JPG MP3 SRT File Input Files – Image (test.jpg) – MP3 File (test.mp3) – SRT Lyrics (test.srt) FFMPEG Command # ffmpeg -loop 1 -y -i test.jpg -i test.mp3 -vf subtitles=”f=test.srt:force_style=’FontName=Arial,FontSize=14″ -shortest test1.mp4 Output File: test1.mp4 SRT Lyrics Preview 1 00:00:00,330 –> 00:00:04,936 Hello Feifei. I didn’t know you shopped at … Read more

Amazon Simple Notification Service Command Lines

Install the AWS CLI Using the Bundled Installer Download the AWS CLI Bundled Installer. # curl “https://s3.amazonaws.com/aws-cli/awscli-bundle.zip” -o “awscli-bundle.zip” # unzip awscli-bundle.zip # chmod a+x ./awscli-bundle/install # ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws Configure AWS CLI # aws configure AWS Access Key ID [None]: XXXXXXXXXXXXXXXXXXXXX AWS Secret Access Key [None]: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Default region name [None]: us-east-1 … Read more

Record Live Streaming Radio to MP3

Sometime you want to record Live Radio Stream to MP3 file, you can find many online linux tools for recording radio stream to server and then download to your local computer. You can use Linux “wget” or “curl” CURL # curl -sS -o stream.mp3 –max-time 150 http://Radio-Server:Port/stream Bitrate: 128 kb/s [it will make approx 2MB … Read more

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

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

Re Stream Radio Shoutcast / Icecast using Node JS

Re-stream Radio (Shoutcast/Icecast) Stream using Node.JS and get Metadata current playing song title… Use port forwarding to hide real shoutcast IP …. Avoid PHP script to damage Server with too many calls on radio server Start Restream > node radio.js node.js>node radio.js Server running at http://192.168.1.4:8007 Radio Stream connected! { ‘icy-notice1’: ‘<BR>This stream requires <a … Read more

Install MistServer

MistServer is a highly versatile, lightweight, customizable open-source multi-standard multimedia server. MistServer configuration is easy to use for full CDN solutions applications. MistServer is Free, open and well-supported, Truly plug and play, Affordable, seamless and highly scalable control over your media servers. MistServer can be installed on any server to make multimedia server. Download MistServer … Read more

MP3 waveforms with PHP

If you are thinking how soundcloud.com generates the waveform for sound MP3 player? There are some audio processing libraries used to process MP3 files to WAV and then PNG / SVG images.. 1. LAME MP3 encoder/decoder $ lame input.mp3 -f -m m -b 16 –resample 8 resampled.mp3 && lame –decode resampled.mp3 output.wav 2. SOX – … Read more