Difference between revisions of "Vlc"

From CBLFS
Jump to navigationJump to search
 
(3 intermediate revisions by the same user not shown)
Line 15: Line 15:
 
* [[FFmpeg]]
 
* [[FFmpeg]]
 
* [[libdvbpsi]]
 
* [[libdvbpsi]]
 +
* [[FriBidi]]
 
=== Recommended ===
 
=== Recommended ===
 
* [[ALSA]]
 
* [[ALSA]]
Line 30: Line 31:
 
* [[D-BUS Core]]
 
* [[D-BUS Core]]
 
* [[HAL]]
 
* [[HAL]]
* [[FriBidi]]
 
 
* [[libcdio]]
 
* [[libcdio]]
 
* [[libcdda]]
 
* [[libcdda]]
Line 70: Line 70:
 
* [[XOSD]]
 
* [[XOSD]]
 
* [[zvbi]]
 
* [[zvbi]]
 +
* [[SDL_image]]
  
 
{{Note|Vlc may not compile properly if parallel makes are used.}}
 
{{Note|Vlc may not compile properly if parallel makes are used.}}
Line 97: Line 98:
 
Install the package
 
Install the package
  
  make install &&
+
  make install
mv -v /usr/bin/vlc-config{,-32}
 
  
 
=== N32 ===
 
=== N32 ===
Line 108: Line 108:
 
Install the package
 
Install the package
  
  make install &&
+
  make install
mv -v /usr/bin/vlc-config{,-n32}
 
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 122: Line 121:
 
Install the package
 
Install the package
  
  make install &&
+
  make install
mv -v /usr/bin/vlc-config{,-64} &&
 
ln -sfv multiarch_wrapper /usr/bin/vlc-config
 
  
 
= Contents =
 
= Contents =
Line 131: Line 128:
 
|-valign="top"
 
|-valign="top"
 
! Installed Programs:
 
! Installed Programs:
| vlc, vlc-config, vlcwrapper.py
+
| vlc, vlc-wrapper
 
|-valign="top"
 
|-valign="top"
 
! Installed Libraries:
 
! Installed Libraries:
Line 139: Line 136:
 
| /usr/include/vlc, /usr/lib/vlc, /usr/share/vlc, /usr/share/doc/vlc
 
| /usr/include/vlc, /usr/lib/vlc, /usr/share/vlc, /usr/share/doc/vlc
 
|}
 
|}
 +
 +
[[Category:Media Utilities]]

Latest revision as of 16:21, 19 March 2009

Download Source: ftp://downloads.videolan.org/pub/videolan/vlc/0.9.9a/vlc-0.9.9a.tar.bz2

Introduction to Vlc

VideoLAN Client (VLC) is a media player, streamer, and encoder for Unix, Windows, Mac OS X, BeOS, QNX, and PocketPC. It can play most audio and video codecs (MPEG 1/2/4, DivX, WMV, Vorbis, AC3, AAC, etc.), has support for VCD, SVCD, and DVD (with menus), and can read or dump streams from a network source (HTTP, UDP, DVB, MMS, etc.). It can also act as a server and send streams through the network, with optional support for audio and video transcoding.

Project Homepage: http://www.videolan.org/vlc/

Dependencies

Required

Recommended

Optional

Caution.png

Note

Vlc may not compile properly if parallel makes are used.

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \
./configure --prefix=/usr &&
make

Install the package

make install

N32

Compile the package:

Todo...

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package

make install

Contents

Installed Programs: vlc, vlc-wrapper
Installed Libraries: libvlc.a
Installed Directory: /usr/include/vlc, /usr/lib/vlc, /usr/share/vlc, /usr/share/doc/vlc