Difference between revisions of "Building VLMC"
Line 21: | Line 21: | ||
In case you are interested in mailing list, goto: | In case you are interested in mailing list, goto: | ||
− | http:// | + | http://mailman.videolan.org/listinfo/ |
We have two VLMC mailing lists: | We have two VLMC mailing lists: | ||
Line 27: | Line 27: | ||
* vlmc-devel: Developers discussions | * vlmc-devel: Developers discussions | ||
− | ==Getting the | + | ==Getting the code== |
− | You can fetch the current working tree using Git: | + | You can fetch the current VLMC working tree using Git: |
+ | git clone git://git.videolan.org/vlmc.git | ||
+ | |||
+ | Do the same for VLC (as described in http://wiki.videolan.org/GetTheSource): | ||
git clone git://git.videolan.org/vlc.git | git clone git://git.videolan.org/vlc.git | ||
Line 36: | Line 39: | ||
Following is the cleanest way of compiling VLMC (commands for *nix OS) | Following is the cleanest way of compiling VLMC (commands for *nix OS) | ||
− | 1 | + | 1. Compile and install libVLC, libVLC is required by VLMC, for example: |
− | |||
− | |||
− | |||
cd path_to_vlc_src | cd path_to_vlc_src | ||
./configure | ./configure | ||
Line 45: | Line 45: | ||
sudo make install | sudo make install | ||
− | + | 2. Compile VLMC: | |
cd path_to_vlmc_src | cd path_to_vlmc_src | ||
cmake . | cmake . | ||
make | make | ||
− | + | 3. Run VLMC: | |
./vlmc | ./vlmc | ||
Line 56: | Line 56: | ||
− | ''The page was last updated on | + | ''The page was last updated on March 13, 2010'' |
Revision as of 15:58, 13 March 2010
Building VLMC from source
This wiki page has information on building VideoLAN Movie Creator, VLMC from source. VLMC (VideoLAN Movie Creator) is a free video editing software, offering features to realize semi-professional quality movies, but with the aim to stays simple and user-friendly.
Resources
VLMC requires Qt(4.5+), C++ compiler and libVLC.
To install Qt, refer: http://www.qtsoftware.com/downloads
To install libVLC, you are required to compile VLC
To get the current source of VLC player, refer: http://wiki.videolan.org/GetTheSource
For information on using Git, refer: http://wiki.videolan.org/Git
For Information on generic compilation of VLC, refer: http://wiki.videolan.org/Compile_VLC
In case you are interested in mailing list, goto:
http://mailman.videolan.org/listinfo/
We have two VLMC mailing lists:
* vlmc-announce: Official announcements (release, events, ...) * vlmc-devel: Developers discussions
Getting the code
You can fetch the current VLMC working tree using Git:
git clone git://git.videolan.org/vlmc.git
Do the same for VLC (as described in http://wiki.videolan.org/GetTheSource):
git clone git://git.videolan.org/vlc.git
Compiling VLMC
Following is the cleanest way of compiling VLMC (commands for *nix OS)
1. Compile and install libVLC, libVLC is required by VLMC, for example:
cd path_to_vlc_src ./configure make sudo make install
2. Compile VLMC:
cd path_to_vlmc_src cmake . make
3. Run VLMC:
./vlmc
Now, start hacking ;-)
The page was last updated on March 13, 2010