Changes between Version 93 and Version 94 of Documentation/VLC
- Timestamp:
- Dec 10, 2010, 3:48:32 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/VLC
v93 v94 9 9 For more information about Ariba, MCPO, or the SpoVNet project, please refer to: http://www.ariba-underlay.org , http://www.spovnet.de 10 10 11 === Get it! === 12 13 Anonymous SVN source code with newest versions: 14 * [https://i72projekte.tm.kit.edu/SpoVNet-KA/entwicklung/ariba/trunk Ariba] 15 * [https://i72projekte.tm.kit.edu/SpoVNet-KA/entwicklung/mcpo/trunk MCPO] 16 * [https://i72projekte.tm.uka.de/SpoVNet-KA/entwicklung/tools/vlc/vlc-1.0.6 VLC 1.0.6 with AribaMC] 17 * [https://i72projekte.tm.uka.de/SpoVNet-KA/entwicklung/tools/vlc/vlc-1.1.5 VLC 1.1.5 with AribaMC] 18 19 Ariba and MCPO source official releases: 20 * [https://projekte.tm.uka.de/trac/spovnet-base/downloads Ariba] 21 * [https://projekte.tm.uka.de/trac/spovnet-base/downloads MCPO] 22 23 Precompiled packages of Ariba, MCPO, and AribaMC plugins for VLC 1.0.6 that comes with Ubuntu 10.04 LTS 24 * [attachment:AribaMCv0.1_VLCv1.0.6_32.tar.gz AribaMC precompiled package for 32 bit ] 25 * [attachment:AribaMCv0.1_VLCv1.0.6_64.tar.gz AribaMC precompiled package for 36 bit ] 26 11 27 === Setting up / installing === 12 28 13 1.0.6 --> Ubuntu 10.04 LTS14 1.1.4 --> Ubuntu 10.1015 1.1.5 --> aktuelle VLC version, aber nicht std. in Ubuntu16 17 32 bit18 64 bit19 20 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx21 22 29 The ariba framework is currently available for Linux, therefor, the plugin is also Linux-based. As soon as further platforms are available it will be announced here. 23 30 24 31 A quick and simple way for testing and using the plugin (besides compilation) is the use of precompiled libraries, which we provide. In this section we describe how to set up an ''Ubuntu 9.10 or 10.04'' for this purpose. This should be adoptable to other Linux distributions easily. Instructions how to compile the plugin are provided in the Developers Guide below. 25 32 26 For running the AribaMC plugin a number of packages are required on the target system. Your might need different boost versions, use what's coming with your distribution. Log4cxx is this version or higher required.33 For running the AribaMC plugin a number of packages are required on the target system. For the precompiled binaries of Ariba and MCPO you need the exact versios of the libraries, if you compile by yourself use the newest available. 27 34 28 35 {{{ … … 34 41 }}} 35 42 36 Please download the tar-ball containing the Ariba and the plugin libraries:[[BR]] 37 32bit linux: [ coming soon ][[BR]] 38 64bit linux: [ coming soon ] 39 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 40 41 Unpack the archive to e.g. {{{$HOME}}}. You will find two folders {{{aribalibs}}} and {{{vlclibs}}}. Set the {{{LD_LIBRARY_PATH}}} to aribalibs: 42 {{{ 43 set LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/user/aribalibs 43 Please download the tar-ball containing the Ariba and the plugin libraries from the links provided in the intro of this documentation above. 44 45 Unpack the archive to e.g. {{{$HOME}}}. You will find two folders first for 32 and 64 bit, then {{{aribalibs}}} and {{{vlclibs}}}. Set the {{{LD_LIBRARY_PATH}}} to aribalibs: 46 {{{ 47 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/aribalibs 44 48 }}} 45 49 and run VLC with 46 50 {{{ 47 vlc --plugin-path= /home/user/vlclibs51 vlc --plugin-path=$HOME/vlclibs 48 52 }}} 49 53 … … 56 60 To follow the instructions here, you can switch the language to English: 57 61 {{{ 58 LANG=en_US.UTF-8 vlc --plugin-path= /home/user/vlclibs62 LANG=en_US.UTF-8 vlc --plugin-path={{{$HOME}}}/vlclibs 59 63 }}} 60 64 … … 97 101 While the GUI only provides limited configuration capabilities, you can use a configuration file that allows for more fine-grained configuration. The configuration file can only be loaded when using VLC with the command line. Setting the configuration file is currently different on sender and receiver side. For setting the config file of the sender use 98 102 {{{ 99 vlc --plugin-path= /home/user/vlclibs --sout-aribamc-config-file ./config.txt103 vlc --plugin-path=$HOME/vlclibs --sout-aribamc-config-file ./config.txt 100 104 }}} 101 105 and for the receiver side use 102 106 {{{ 103 vlc --plugin-path= /home/user/vlclibs --config-file ./config.txt107 vlc --plugin-path=$HOME/vlclibs --config-file ./config.txt 104 108 }}} 105 109