I was interested in experimenting with video and audio streaming, after a little of Google searching I found this how to about Jinzora installation. Jinzora is a web based media streaming and management system completely written in PHP. It gives you a graphic user interface to search, organize and view your media files simply from your web browser. What triggered me to choose Jinzora was mainly the limited requirements It has. It helped also that i had the computer almost ready with Apache2 and MySQL already installed.
I started my installation directly from how to's part 2 by installing some missing component:
sudo apt-get install libapache2-mod-auth-mysqland then I edited my php configuration to fit Jinzora requirements by typing:
sudo apt-get install php5-gd
sudo pico /etc/php5/apache2/php.iniand adjusting some parameters
max_execution_time = 300I then downloaded Jinzora and installed it in Apache
memory_limit = 128M
post_max_size = 32M
file_uploads = On
upload_max_filesize = 32M
wget http://downloads.sourceforge.net/jinzora/jz275.tar.gzAnd after restarting Apache server as usual ...
sudo tar xvzf jz275.tar.gz
sudo mv jinzora2 /var/www/jinzora2
sudo chmod -R 777 /var/www/jinzora2
sudo /etc/init.d/apache2 restartI've been able to access to Jinzora using my browser at the server address:
http://192.168.30.100/jinzora2/Jinzora asks you to configure some initial configuration parameters like MySQL user and password in order to complete installation. Everthing is done with the help of a simple and well explained web based user interface. After initial configuration Jinzora asks you to delete the installation directory before proceeding with normal use. This was easily done ...
sudo rm -r /var/www/jinzora2/installAfter this I finally managed to enter in Jinzora.
As my first impression Jinzora works fine: video streaming is smooth, and this is what really matters, and the user interface is clean and effective (you can choose many GUI layout and skins). I installed VLC media player on my Windows client (Sempron 2400) in order to play streaming while on my Linux laptop (EEEPC with Xandros) everything worked fine using Real player (RAM) streaming mode.
If I'm going to continue with this media server and transform it to a fully operative one I'll need some better hardware platform with a bigger hard-disk and a quieter fan. But, at the moment, it's still just another Linux experiment.
No comments :
Post a Comment