Mulyana Sandi

Belajar menulis dan berbagi ilmu melalui blog, sedikit tulisan semoga menjadi banyak manfaat :D.

Star Bolic

Belajar menulis dan berbagi ilmu melalui blog, sedikit tulisan semoga menjadi banyak manfaat :D.

Home Mini Server and VoIP

Banyak sekali perangkat yang terselubung diantara ilmu yang bermanfaat, perangkat kecil dengan hasil yang gak bisa di taksir.

Mulyana Sandi

Belajar menulis dan berbagi ilmu melalui blog, sedikit tulisan semoga menjadi banyak manfaat :D.

Antenna Star Bolic

Menembus jarak dengan perangkat yang murah meriah namun memerlukan kreatifitas dalam pembuatannya.

Friday, December 7, 2012

Broadcast Audio Online with Icecast Darkice and ezstream


f you ever wanted to broadcast your own voice or a mp3 playlist, here’s the solution for that. When I was exploring about online broadcasting, I found two popular audio broadcastingapplications those are Shoutcast (Windows) and Icecast (Linux). In this guide I’ll setup an Icecast server in Ubuntu. The reason why I choose to Linux based setup is because I don’t want to touch any GUI to setup the whole thing. Before you start prepare the basic requirements.

System Requirements

A computer with Ubuntu 10.04 or 12.04
A decent internet connection

Installation

First install the required applications.
sudo apt-get update && sudo apt-get install icecast2 darkice ezstream
sudo apt-get install openssh-server screen (If you want to manage the server remotely)
When installing icecast2 package you’ll be asked to change the password. Don’t leave the default password. Change it to something else.

How Streaming Works

There are two type of streaming.
1. Live voice streaming (using Darkice).
2. Streaming a premade mp3 playlist (using ezstream).
  • Icecast is the broadcaster which needs to be feeded by another application.
  • Darkice will get the line-in and feed into icecast2 in mp3 format.
  • ezstream will feed the mp3 playlist into icecast.

Setting up Live Streaming

Create a directory called ‘livestream’ in your home directory
mkdir /home/irfad/livestream
Create config file and paste following code
nano /home/irfad/livestream/darkice.cfg
[general] 
duration = 0 # duration of encoding, in seconds. 0 means forever 
bufferSecs = 1 # size of internal slip buffer, in seconds 
reconnect = yes # reconnect to the server(s) if disconnected

[input] 
device = pulse 
sampleRate = 44100 # sample rate in Hz. try 11025, 22050 or 44100 
bitsPerSample = 16 # bits per sample. try 16 
channel = 2 # channels. 1 = mono, 2 = stereo

[icecast2-0]
bitrateMode = vbr # variable bit rate (cbr for constant) 
quality = 1.0 # 1.0 is best quality 
format = mp3 bitrate = 64 # bitrate 
server = localhost # or IP 
port = 8000 # port for IceCast2 access 
password = PASSWORD # source password to the IceCast2 server 
mountPoint = live.mp3 # mount point on the IceCast2 server
Change <PASSWORD> to Icecast server password which we setup while installing icecast.
Save the config file and run the following command.
sudo darkice -c /home/irfad/livestream/darkice.cfg
Now open up your web browser and go to

Streaming a Playlist

Create directories in your home directory called ‘mp3streaming’ and ‘mp3store’
mkdir /home/irfad/mp3streaming /home/irfad/mp3store
Now copy all the mp3 files which you want to broadcast into tha mp3store directory.
Create playlist file in mp3stream directory and enter the paths of mp3 files line by line.
nano /home/irfad/mp3streaming/playlist.txt
/home/irfad/mp3store/audio1.mp3
/home/irfad/mp3store/audio2.mp3
/home/irfad/mp3store/audio3.mp3
/home/irfad/mp3store/audio4.mp3
Save the playlist and create the config file and paste the codes.
nano /home/irfad/mp3streaming/ezstream.xml
<ezstream>
<url>http://localhost:8000/myradio.mp3</url>
<sourcepassword>PASSWORD</sourcepassword> 
<format>MP3</format> 
<filename>/home/irfad/mp3streaming/playlist.txt</filename> 
<stream_once>0</stream_once> 
<svrinfoname>Geek Radio</svrinfoname> 
<svrinfourl>http://geeklk.com/</svrinfourl> 
<svrinfogenre>Dance</svrinfogenre> 
<svrinfodescription>Geek Radio Station</svrinfodescription> 
<svrinfobitrate>128</svrinfobitrate> 
<svrinfochannels>2</svrinfochannels> 
<svrinfosamplerate>44100</svrinfosamplerate> 
<!-- No advertising on a public YP directory --> 
<svrinfopublic>0</svrinfopublic> 
</ezstream>
Change the <PASSWORD> to access Icecast server.
Start streaming by typing
ezstream -c /home/irfad/mp3streaming/ezstream.xml
Now go to http://localhost:8000/myradio.mp3 in your web browser.

Thursday, December 6, 2012

Install Apache PHP MySQL di Ubuntu Linux


PHP merupakan bahasa pemograman untuk membuat website. PHP tidak dapat berdiri sendiri, umumnya PHP membutuhkan Apache sebagai server dan MySQL sebagai database backendnya, karena inilah, maka paket ini sering disebut dengan AMP(Apache, MySQL, PHP) . Sayangnya instalasi PHP dan kawan kawannya (Apache dan MySQL) di Linux tidak semudah di Windows Mikocok. Jika anda memakai OS Mikocok , anda akan mendapatkan kemudahan instalasi seperti Wamp atau XAMPP. Ketika kita menginstall software tersebut, secara otomotasi PHP, Apache, mySQL dan PHPmyAdmin sudah terinstall didalamnya.
Instalasi ini harus di lakukan secara urut agar tidak terjadi errror. Untuk instalasi kita membutuhkan koneksi internet. Instalasi di mulai dari Apache, PHP, MySQL dan yang terakhir adalah PHPMyAdmin. Sekedar catatan, kita akan memakai apache versi 2 dan PHP versi 5. Di contoh ini, penulis memakai ubuntu 10.10 dektop.

Instalasi Apache2
buka terminal dan ketikan perintah dibawah ini, jika anda muncul pertanyaan tentang depedensi paket, pilih saja Yes/Y.
sudo apt-get install apache2
setelah selesai instalasi, Apache2 langsung di jalankan secara default oleh ubuntu. Untuk mengetes apakah apache sudah berjalan, silahkan buka http://localhost
Jika tampilan yang muncul adalah tulisan “It’s Work” maka instalasi berhasil.
Instalasi PHP5
sudo apt-get install php5 libapache2-mod-php5
sudo apt-get install php5-cli
sudo apt-get install php5-cgi
sudo apt-get install php5-mysql
selanjutnya restart apache dengan perintah
sudo /etc/init.d/apache2 restart
Untuk mengetest hasil instalasi ,
buatkan script php sederhana seperti dibawah ini, simpan dengan nama info.php simpan di folder /var/www/info.php

buka halaman http://localhost/info.php
Instalasi MySQL dan PHPmyAdmin
masih di terminal, ketikan perintah berikut untuk menginstall mySQL
sudo apt-get install mysql-server
sudo apt-get install phpmyadmin
kemudian kita akan mengedit pada bagian /etc/apache2/apache2.conf, untuk mengeditnya dapat kita tuliskan perintah berikut pada terminal:
gksudo gedit /etc/apache2/apache2.conf
Setelah file tersebut terbuka, silahkan anda tambahkan code berikut :
Include /etc/phpmyadmin/apache.conf
taruh pada bagian bawah atau atas.
terakhir kita kembali restart apache dengan perintah
sudo /etc/init.d/apache2 restart
saat instalasi mungkin anda muncul beberapa pertanyaan, misal anda diminta memasukan password mysql, atau memberi password mysql server, jika diminta masukan saja passwordnya root, root.
Sekedar catatan, user di mysql adalah root dan secara defult passwordnya kosong.
setelah selesai buka halaman http://localhost/phpmyadmin.
Jika salah satu instalasi gagal, kemungkinan karena anda kurang teliti dalam menuliskan perintah atau repo anda belum di update.