Difference between revisions of "K3b"

From CBLFS
Jump to navigationJump to search
Line 27: Line 27:
 
* [[FFmpeg]]
 
* [[FFmpeg]]
 
* [[FLAC]]
 
* [[FLAC]]
* [[HAL]] and [[DBUS]] (with Qt3 binding)
+
* [[HAL]] and [[D-BUS Qt3]]
 
* [[LAME]]
 
* [[LAME]]
 
* [[libmad]]
 
* [[libmad]]

Revision as of 10:34, 23 December 2006

Download Source: http://prdownloads.sourceforge.net/k3b/k3b-1.0.5.tar.bz2

Intrduction to K3b

The K3b package contains a KDE-based graphical interface to the Cdrtools and dvd+rw-tools CD/DVD manipulation tools. It also combines the capabilities of many other multimedia packages into one central interface to provide a simple-to-operate application that can be used to handle many of your CD/DVD recording and formatting requirements. This is useful for creating audio, data, video and mixed-mode CDs as well as copying, ripping and burning CDs and DVDs.

Though K3b can be used to copy almost any DVD to similar medium, it does not provide a way to copy, or reproduce a double-layer DVD onto single-layer medium. Of course, there is not a program anywhere on any platform that can make an exact duplicate of a double-layer DVD onto a single-layer disk, there are programs on some platforms that can compress the data on a double-layer DVD to fit on a single-layer DVD producing a duplicate, but compressed, image. If you need to copy the contents of a double-layer DVD to single-layer medium, you may want to look at the RMLCopyDVD package.

Dependencies

Required

Recommended

Optional

Required Runtime

Required Runtime (For Dvd Ripping and Encoding)

Non-Multilib

Compile the package:

./configure --prefix=${KDE_PREFIX} \
    --sysconfdir=/etc/kde \
    --disable-debug \
    --disable-dependency-tracking &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=${KDE_PREFIX} \
    --sysconfdir=/etc/kde \
    --disable-debug \
    --disable-dependency-tracking &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=${KDE_PREFIX} \
    --sysconfdir=/etc/kde \
    --disable-debug \
    --disable-dependency-tracking &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=${KDE_PREFIX} \
    --sysconfdir=/etc/kde \
    --disable-debug \
    --disable-dependency-tracking &&
make

Install the package

make install