Wednesday, May 8, 2024
Clipbucket Ubuntu

Install Clipbucket on ubuntu 12.04

Clipbucket adalah web video sharing seperti layak nya youtube atau vimeo

Requirment :

Ubuntu 12.04

1. install web server
# apt-get install apache2 -y

2. install mysql server
# apt-get install mysql-server -y

3. install php
#apt-get install php5 -y
#apt-get install php5-gd -y
apt-get install php5-curl -y

4. setting php.ini

# Pico / etc/php5/apache2/php.ini

upload_max_filesize = 500M
max_execution_time = 300
max_input_time = 300
memory_limit = 256
magic_quotes_gpc = on
magic_quotes_runtime = off
post_max_size = 500M
register_globals = off
safe_mode = off
output_buffering = off
display_errors = on

5. install ffmpeg
#apt-get install ffmpeg -y

6. install flvtool2
#apt-get install flvtool2 -y

7. install gpac
#apt-get install gpac -y

8. Bikin Database

# Mysql-u root-p
mysql> create database clipb;
mysql> GRANT ALL ON cb .* TO ‘clipuser’ @ ‘localhost’ IDENTIFIED BY ‘12345a!’;
mysql> flush privileges;
mysql> quit

9. upload / download Clipbucket

download di http://clip-bucket.com/downloads .
lalu misal simpan di /var/www/video

10. install from web.
http://ipaddr/video

(Visited 89 times, 1 visits today)
Baca Juga :  Install multi Nodejs dengan NVM di ubuntu

Similar Posts