2006-08-15 20:37:04 +00:00
|
|
|
/**
|
2006-09-01 22:31:10 +00:00
|
|
|
@author Mario Danic, Thomas Schmitt
|
2006-08-15 20:37:04 +00:00
|
|
|
|
2006-12-03 15:56:27 +00:00
|
|
|
@mainpage Libburnia Documentation Index
|
2006-08-15 20:37:04 +00:00
|
|
|
|
|
|
|
@section intro Introduction
|
|
|
|
|
2006-12-03 15:56:27 +00:00
|
|
|
Libburnia is an open-source project for reading, mastering and writing
|
2007-03-06 20:51:32 +00:00
|
|
|
optical discs.
|
|
|
|
For now this means CD-R, CD-RW, DVD-RAM, DVD+RW, DVD+R, DVD-RW, DVD-R.
|
2006-12-21 21:46:58 +00:00
|
|
|
|
2007-03-06 20:51:32 +00:00
|
|
|
Not supported yet are dual layer media, HD-DVD, BD (blue ray). Testers for
|
|
|
|
dual layer DVD+/-R are wanted, though.
|
2006-08-15 20:37:04 +00:00
|
|
|
|
2006-09-01 22:31:10 +00:00
|
|
|
The project comprises of several more or less interdependent parts which
|
|
|
|
together strive to be a usable foundation for application development.
|
|
|
|
These are libraries, language bindings, and middleware binaries which emulate
|
|
|
|
classical (and valuable) Linux tools.
|
2006-08-15 20:37:04 +00:00
|
|
|
|
2006-11-10 09:37:48 +00:00
|
|
|
Our scope is currently Linux 2.4 and 2.6 only. For ports to other systems
|
|
|
|
we would need : login on a development machine resp. a live OS on CD or DVD,
|
|
|
|
advise from a system person about the equivalent of Linux sg or FreeBSD CAM,
|
|
|
|
volunteers for testing of realistic use cases.
|
2006-09-01 22:31:10 +00:00
|
|
|
|
2007-02-08 14:10:05 +00:00
|
|
|
We have a workable code base for burning data and audio CDs and many DVD types.
|
|
|
|
The burn API is quite comprehensively documented and can be used to build a
|
|
|
|
presentable application.
|
2006-11-24 16:28:25 +00:00
|
|
|
We have a functional binary which emulates the core use cases of cdrecord in
|
|
|
|
order to prove that usability, and in order to allow you to explore libburn's
|
|
|
|
scope by help of existing cdrecord frontends.
|
2006-09-01 22:31:10 +00:00
|
|
|
|
2006-09-02 09:08:50 +00:00
|
|
|
@subsection components The project components (list subject to growth, hopefully):
|
2006-09-01 22:31:10 +00:00
|
|
|
|
2006-09-06 15:27:03 +00:00
|
|
|
- libburn is the library by which preformatted data get onto optical media.
|
2006-09-01 22:31:10 +00:00
|
|
|
It uses either /dev/sgN (e.g. on kernel 2.4 with ide-scsi) or
|
2007-04-23 15:43:51 +00:00
|
|
|
/dev/srM or /dev/hdX (e.g. on kernel 2.6).
|
2007-02-08 14:10:05 +00:00
|
|
|
libburn is the foundation of our cdrecord emulation. Its code is
|
|
|
|
independent of cdrecord. Its DVD capabilities are learned from
|
|
|
|
studying the code of dvd+rw-tools and MMC-5 specs. No code but only
|
|
|
|
the pure SCSI knowledge has been taken from dvd+rw-tools, though.
|
2006-09-01 22:31:10 +00:00
|
|
|
|
2006-09-06 15:27:03 +00:00
|
|
|
- libisofs is the library to pack up hard disk files and directories into a
|
2006-09-01 22:31:10 +00:00
|
|
|
ISO 9660 disk image. This may then be brought to CD via libburn.
|
|
|
|
libisofs is to be the foundation of our upcoming mkisofs emulation.
|
|
|
|
|
2006-09-06 15:27:03 +00:00
|
|
|
- cdrskin is a limited cdrecord compatibility wrapper for libburn.
|
2006-09-01 22:31:10 +00:00
|
|
|
cdrecord is a powerful GPL'ed burn program included in Joerg
|
|
|
|
Schilling's cdrtools. cdrskin strives to be a second source for
|
2007-02-08 14:10:05 +00:00
|
|
|
the services traditionally provided by cdrecord. Additionally it
|
|
|
|
provides libburn's DVD capabilities, where only -sao is compatible
|
|
|
|
with cdrecord.
|
2006-09-01 22:31:10 +00:00
|
|
|
cdrskin does not contain any bytes copied from cdrecord's sources.
|
|
|
|
Many bytes have been copied from the message output of cdrecord
|
|
|
|
runs, though.
|
|
|
|
See cdrskin/README for more.
|
|
|
|
|
2006-09-02 09:08:50 +00:00
|
|
|
- "test" is a collection of application gestures and examples given by the
|
2007-02-08 14:10:05 +00:00
|
|
|
authors of the library features. The burn API example of libburn
|
|
|
|
is named test/libburner.c . The API for media information inquiry is
|
|
|
|
demonstrated in test/telltoc.c .
|
2006-09-06 15:27:03 +00:00
|
|
|
Explore these examples if you look for inspiration.
|
2006-09-01 22:31:10 +00:00
|
|
|
|
2006-09-06 15:27:03 +00:00
|
|
|
We plan to be a responsive upstream. Bear with us.
|
|
|
|
|
|
|
|
|
|
|
|
@section using Using the libraries
|
|
|
|
|
|
|
|
Our build system is based on autotools.
|
2006-09-01 22:31:10 +00:00
|
|
|
User experience tells us that you will need at least autotools version 1.7.
|
|
|
|
|
|
|
|
To build libburn and its subprojects it should be sufficient to go into
|
|
|
|
its toplevel directory and execute
|
2006-09-06 15:27:03 +00:00
|
|
|
|
|
|
|
- ./bootstrap (needed if you downloaded from SVN)
|
|
|
|
|
|
|
|
- ./configure
|
|
|
|
|
|
|
|
- make
|
2006-09-01 22:31:10 +00:00
|
|
|
|
|
|
|
To make the libraries accessible for running resp. developing applications
|
|
|
|
|
2006-09-06 15:27:03 +00:00
|
|
|
- make install
|
2006-09-01 22:31:10 +00:00
|
|
|
|
2006-09-06 15:27:03 +00:00
|
|
|
Both libraries are written in C language and get built by autotools.
|
|
|
|
Thus we expect them to be useable by a wide range of Linux-implemented
|
|
|
|
languages and development tools.
|
2006-09-02 09:50:22 +00:00
|
|
|
|
|
|
|
|
2006-09-06 15:27:03 +00:00
|
|
|
@section libburner Libburner
|
2006-09-02 09:55:46 +00:00
|
|
|
|
2006-09-06 15:27:03 +00:00
|
|
|
libburner is a minimal demo application for the library libburn
|
|
|
|
(see: libburn/libburn.h) as provided on http://libburn.pykix.org .
|
2007-02-07 17:49:52 +00:00
|
|
|
It can list the available devices, can blank a CD-RW or DVD-RW and
|
2007-03-06 20:51:32 +00:00
|
|
|
can burn to recordable CD and recordable single layer DVD.
|
2006-09-06 15:27:03 +00:00
|
|
|
|
|
|
|
It's main purpose, nevertheless, is to show you how to use libburn and also
|
2006-12-03 15:56:27 +00:00
|
|
|
to serve the libburnia team as reference application. libburner does indeed
|
2006-09-06 15:27:03 +00:00
|
|
|
define the standard way how above three gestures can be implemented and
|
|
|
|
stay upward compatible for a good while.
|
|
|
|
|
|
|
|
@subsection libburner-help Libburner --help
|
|
|
|
<pre>
|
|
|
|
Usage: test/libburner
|
2006-11-16 16:53:42 +00:00
|
|
|
[--drive <address>|<driveno>|"-"] [--audio]
|
2007-02-07 17:49:52 +00:00
|
|
|
[--blank_fast|--blank_full|--format_overwrite]
|
|
|
|
[--try_to_simulate]
|
|
|
|
[--multi] [<one or more imagefiles>|"-"]
|
2006-09-06 15:27:03 +00:00
|
|
|
Examples
|
|
|
|
A bus scan (needs rw-permissions to see a drive):
|
|
|
|
test/libburner --drive -
|
2006-11-24 16:18:42 +00:00
|
|
|
Burn a file to drive chosen by number, leave appendable:
|
|
|
|
test/libburner --drive 0 --multi my_image_file
|
|
|
|
Burn a file to drive chosen by persistent address, close:
|
2006-10-20 13:58:53 +00:00
|
|
|
test/libburner --drive /dev/hdc my_image_file
|
2006-09-06 15:27:03 +00:00
|
|
|
Blank a used CD-RW (is combinable with burning in one run):
|
2006-10-20 13:58:53 +00:00
|
|
|
test/libburner --drive /dev/hdc --blank_fast
|
2007-02-07 17:49:52 +00:00
|
|
|
Blank a used DVD-RW (is combinable with burning in one run):
|
|
|
|
test/libburner --drive /dev/hdc --blank_full
|
|
|
|
Format a DVD-RW to avoid need for blanking before re-use:
|
|
|
|
test/libburner --drive /dev/hdc --format_overwrite
|
|
|
|
Burn two audio tracks (to CD only):
|
2006-10-20 13:58:53 +00:00
|
|
|
lame --decode -t /path/to/track1.mp3 track1.cd
|
|
|
|
test/dewav /path/to/track2.wav -o track2.cd
|
|
|
|
test/libburner --drive /dev/hdc --audio track1.cd track2.cd
|
2006-11-24 16:18:42 +00:00
|
|
|
Burn a compressed afio archive on-the-fly:
|
2006-09-06 15:27:03 +00:00
|
|
|
( cd my_directory ; find . -print | afio -oZ - ) | \
|
2006-11-16 16:53:42 +00:00
|
|
|
test/libburner --drive /dev/hdc -
|
2007-02-07 17:49:52 +00:00
|
|
|
To be read from *not mounted* media via: afio -tvZ /dev/hdc
|
2006-09-06 15:27:03 +00:00
|
|
|
</pre>
|
2006-11-24 12:41:39 +00:00
|
|
|
libburner has two companions, telltoc and dewav, which help to perform some
|
|
|
|
peripheral tasks of burning.
|
|
|
|
|
|
|
|
telltoc prints a table of content (sessions, tracks and leadouts), it tells
|
2007-02-07 17:49:52 +00:00
|
|
|
about type and state of media, and also is able to provide the necessary
|
|
|
|
multi-session information for program mkisofs option -C. Especially helpful
|
|
|
|
are its predictions with "Write multi" and "Write modes" where availability
|
|
|
|
of "TAO" indicates that tracks of unpredicted length can be written.
|
2006-11-24 16:18:42 +00:00
|
|
|
See: test/telltoc --help.
|
2006-11-24 12:41:39 +00:00
|
|
|
|
|
|
|
dewav extracts raw byte-swapped audio data from files of format .wav (MS WAVE)
|
|
|
|
or .au (SUN Audio). See example in libburner --help.
|
2006-09-06 15:27:03 +00:00
|
|
|
|
|
|
|
@subsection libburner-source Sourceode of libburner
|
|
|
|
|
|
|
|
Click on blue names of functions, structures, variables, etc in oder to
|
|
|
|
get to the according specs of libburn API or libburner sourcecode.
|
2006-09-02 09:55:46 +00:00
|
|
|
|
2006-09-06 15:27:03 +00:00
|
|
|
@include libburner.c
|
2006-08-15 20:37:04 +00:00
|
|
|
*/
|