From af44cbccf200d97757c5a67eb5ccd60383772bd8 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Fri, 20 Oct 2006 13:58:53 +0000 Subject: [PATCH] Updated help text of libburner --- doc/comments | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/doc/comments b/doc/comments index a4e23c5..886acb6 100644 --- a/doc/comments +++ b/doc/comments @@ -92,23 +92,26 @@ stay upward compatible for a good while.
 Usage: test/libburner
        [--drive 
||"-"] - [--verbose ] [--blank_fast|--blank_full] - [--burn_for_real|--try_to_simulate] [--stdin_size ] - [|"-"] + [--blank_fast|--blank_full] [--audio] + [--try_to_simulate] [--stdin_size ] + [|"-"] Examples A bus scan (needs rw-permissions to see a drive): test/libburner --drive - Burn a file to drive chosen by number: - test/libburner --drive 0 --burn_for_real my_image_file + test/libburner --drive 0 my_image_file Burn a file to drive chosen by persistent address: - test/libburner --drive /dev/hdc --burn_for_real my_image_file + test/libburner --drive /dev/hdc my_image_file Blank a used CD-RW (is combinable with burning in one run): - test/libburner --drive 0 --blank_fast + test/libburner --drive /dev/hdc --blank_fast +Burn two audio tracks + 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 Burn a compressed afio archive on-the-fly, pad up to 700 MB: ( cd my_directory ; find . -print | afio -oZ - ) | \ - test/libburner --drive /dev/hdc --burn_for_real --stdin_size 734003200 - -To be read from *not mounted* CD via: - afio -tvZ /dev/hdc + test/libburner --drive /dev/hdc --stdin_size 734003200 - +To be read from *not mounted* CD via: afio -tvZ /dev/hdc Program tar would need a clean EOF which our padded CD cannot deliver.