New options --cdtext_dummy and --cdtext_verbose
This commit is contained in:
parent
c0671cc709
commit
2d600d61f4
@ -2,7 +2,7 @@
|
|||||||
.\" First parameter, NAME, should be all caps
|
.\" First parameter, NAME, should be all caps
|
||||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||||
.\" other parameters are allowed: see man(7), man(1)
|
.\" other parameters are allowed: see man(7), man(1)
|
||||||
.TH CDRSKIN 1 "Dec 15, 2011"
|
.TH CDRSKIN 1 "Dec 18, 2011"
|
||||||
.\" Please adjust this date whenever revising the manpage.
|
.\" Please adjust this date whenever revising the manpage.
|
||||||
.\"
|
.\"
|
||||||
.\" Some roff macros, for reference:
|
.\" Some roff macros, for reference:
|
||||||
@ -1233,6 +1233,20 @@ under test reservation.
|
|||||||
(If you really test experimental media, then please report the outcome on
|
(If you really test experimental media, then please report the outcome on
|
||||||
libburn-hackers@pykix.org)
|
libburn-hackers@pykix.org)
|
||||||
.TP
|
.TP
|
||||||
|
.BI \--cdtext_dummy
|
||||||
|
Prepare a burn run, report the effective array of CD-TEXT packs to stdout,
|
||||||
|
and then end the program run without starting to burn the session.
|
||||||
|
A blank CD-R or CD-RW has to be present in the drive, nevertheless.
|
||||||
|
.br
|
||||||
|
The output is formatted in lines which describe 18 bytes as 2-digit hex
|
||||||
|
numbers or as single printable characters.
|
||||||
|
See libburn document doc/cdtext.txt about the format of these records.
|
||||||
|
.TP
|
||||||
|
.BI \--cdtext_verbose
|
||||||
|
Like --cdtext_dummy but without preventing the burn run. Combinable with
|
||||||
|
option -dummy to exercise a CD burn run with no persistent impact on the
|
||||||
|
medium.
|
||||||
|
.TP
|
||||||
.BI dev_translation= <sep><from><sep><to>
|
.BI dev_translation= <sep><from><sep><to>
|
||||||
Set drive address alias. This was necessary before cdrskin-0.2.4 to manually
|
Set drive address alias. This was necessary before cdrskin-0.2.4 to manually
|
||||||
translate cdrecord addresses into cdrskin addresses.
|
translate cdrecord addresses into cdrskin addresses.
|
||||||
|
@ -2719,6 +2719,10 @@ set_dev:;
|
|||||||
" --any_track allow source_addresses to match '^-.' or '='\n");
|
" --any_track allow source_addresses to match '^-.' or '='\n");
|
||||||
printf(
|
printf(
|
||||||
" assert_write_lba=<lba> abort if not next write address == lba\n");
|
" assert_write_lba=<lba> abort if not next write address == lba\n");
|
||||||
|
fprintf(stderr,
|
||||||
|
" --cdtext_dummy show CD-TEXT pack array instead of writing CD\n");
|
||||||
|
fprintf(stderr,
|
||||||
|
" --cdtext_verbose show CD-TEXT pack array before writing CD\n");
|
||||||
printf(
|
printf(
|
||||||
" direct_write_amount=<size> write random access to media like DVD+RW\n");
|
" direct_write_amount=<size> write random access to media like DVD+RW\n");
|
||||||
printf(" --demand_a_drive exit !=0 on bus scans with empty result\n");
|
printf(" --demand_a_drive exit !=0 on bus scans with empty result\n");
|
||||||
@ -7415,7 +7419,7 @@ unsupported_blank_option:;
|
|||||||
} else if(strcmp(argv[i],"--cdtext_dummy")==0) {
|
} else if(strcmp(argv[i],"--cdtext_dummy")==0) {
|
||||||
skin->cdtext_test= 2;
|
skin->cdtext_test= 2;
|
||||||
|
|
||||||
} else if(strcmp(argv[i],"--cdtext_test")==0) {
|
} else if(strcmp(argv[i],"--cdtext_verbose")==0) {
|
||||||
skin->cdtext_test= 1;
|
skin->cdtext_test= 1;
|
||||||
|
|
||||||
} else if(strcmp(argv[i],"-checkdrive")==0) {
|
} else if(strcmp(argv[i],"-checkdrive")==0) {
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Cdrskin_timestamP "2011.12.16.111300"
|
#define Cdrskin_timestamP "2011.12.18.161107"
|
||||||
|
Loading…
Reference in New Issue
Block a user