Warning, /multimedia/k3b/libk3b/README is written in an unsupported language. File is not indexed.

0001 libk3b
0002 =========================
0003 
0004 This is the k3b library which provides a lot of CD/DVD writing classes.
0005 
0006 If you want to use it please be aware that the API is far from stable and
0007 there will be no binary compatibility (or even source compatibility).
0008 
0009 But you are welcome to help fix the API and improve it whereever it is needed.
0010 
0011 
0012 Usage
0013 ==========================
0014 
0015 Just a very basic scetch how to create an audio cd:
0016 
0017 1. create a k3bcore instance (this provides all the stuff that is needed by the lib)
0018 1.1 K3bCore::init() to initialize the core.
0019 
0020 2. create a K3bAudioDoc object and add urls to it
0021 
0022 3. create a K3bJobHandler derived class (for example a widget which displays the progress)
0023 
0024 4. call K3bAudioDoc::newBurnJob or create a K3bAudioJob manually.
0025 
0026 5. modify the doc's settings.
0027 
0028 6. call K3bAudioJob::start() to start the burning process.