Diff for "Veejay"


Differences between revisions 1 and 2
Revision 1 as of 2008-07-07 21:41:38
Size: 2910
Editor: bmex-gw
Comment: documented what I did. Hope it helps someone..
Revision 2 as of 2008-07-07 21:44:11
Size: 2907
Editor: bmex-gw
Comment:
Deletions are marked like this. Additions are marked like this.
Line 20: Line 20:
`echo deb http://unicap-imaging.org/packages hardy main contrib | sudo tee-a / etc / apt / sources.list` `echo deb http://unicap-imaging.org/packages feisty main contrib | sudo tee -a /etc/apt/sources.list`

Introduction

How to install and use the live video editing application veejay. This package currently needs to be compiled. It took me a while so I documented what I did.

About Veejay

Veejay is a 'visual' instrument and realtime video sampler for live video performances. Allows you to trigger samples, apply realtime effects (120+), scratch, mix, record.

Veejay is a visual instrument and real-time video sampler. It allows you to "play" the video like you would play a piano. While playing, you can record the resulting video directly to disk (video sampling).

Getting required software

Open a terminal

Add a repo

echo deb http://unicap-imaging.org/packages feisty main contrib | sudo tee -a /etc/apt/sources.list

Get the key for the new repo

wget http://unicap-imaging.org/downloads/public.key -O- | sudo apt-key add -

Update

sudo apt-get update

Install

sudo apt-get install build-essential automake1.7 libtool bison flex cvs gawk libdirectfb-dev libmjpegtools-dev libsdl1.2-dev libgtk2.0-dev libasound2-dev libjack-dev libjack0.100.0-dev jackd libxml2-dev libxrandr-dev subversion libsamplerate0-dev libxv-dev libxt-dev libglitz-glx1-dev libglade2-dev ffmpeg libavcodec-dev libavformat-dev libswscale-dev libfreetype6-dev libdv4-dev libasound-dev libunicap libunicap-dev

Make a folder and get the program

cd Desktop mkdir veejay cd veejay

wget http://www.veejayhq.net/releases/veejay-1.2.tar.bz2

tar xjvf veejay-1.2.tar.bz2

= Installing the software =

1- Veejay-server:

cd ~/veejay-server

export PKG_CONFIG_PATH=/usr/lib/pkgconfig/

./configure --prefix=/usr --enable-gl

make

sudo make install

sudo make clean

cd ..

2- Veejay-client (reloaded):

cd ~/veejay-client

export PKG_CONFIG_PATH=/usr/lib/pkgconfig/

./configure --prefix=/usr --with-gdk-pixbuf

make

sudo make install

sudo make clean

cd ..

3- Veejay-themes

cd ~/veejay-themes

sudo ln -s /usr/local/lib/libgtkcairo.so.2 /usr/lib/libgtkcairo.so.2

chmod +x INSTALL.sh

sudo ./INSTALL.sh ~/

Sort out permissions

sudo chmod 777-R ~ /. veejay

cd ..

4- Veejay-utils:

cd ~/veejay-utils

./configure --prefix=/usr

make

sudo make install

sudo make clean

Start server:

veejay -O=04

Start client

reloaded

Using Veejay

I have no idea yet! Good luck..

Other Guides

http://divilinux.netsons.org/index.php/archives/807 - Most content borrowed from here

http://www.veejayhq.net/?cat=7 - official page


CategoryDocumentation

Veejay (last edited 2009-02-28 19:37:40 by bmex-gw)