Skip to content

Commit

Permalink
mxf2raw: extend -rdd6 option description
Browse files Browse the repository at this point in the history
  • Loading branch information
philipnbbc committed Oct 9, 2023
1 parent 153b367 commit 5a7b1d4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions apps/mxf2raw/mxf2raw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1678,10 +1678,15 @@ static void usage(const char *cmd)
printf(" --avid Extract Avid metadata\n");
printf(" --st436-mf <count> Set the <count> of frames to examine for ST 436 ANC/VBI manifest info. Default is %u\n", DEFAULT_ST436_MANIFEST_COUNT);
printf(" --rdd6 <frames> <filename>\n");
printf(" Extract RDD-6 audio metadata from <frames> to XML <filename>.\n");
printf(" <frames> can either be a single frame or a range using '-' as a separator\n");
printf(" RDD-6 metadata is extracted from the first frame and program description text is accumulated using the other frames\n");
printf(" Not all frames will be required if a complete program text has been extracted\n");
printf(" Extract RDD 6 audio metadata from <frames> to XML <filename>, e.g. '--rdd6 0-500 output.xml'\n");
printf(" RDD 6 metadata has a fixed value in every frame except for the program description text\n");
printf(" which is spread over frames, 1 program description text character per frame.\n");
printf(" <frames> specifies which frames to extract from and can either be a single frame or a range using '-' as a separator.\n");
printf(" <frames> is the maximum range of frames to extract a complete description text for all programs.\n");
printf(" A program text is complete if a start and then finally an end marker character have been read.\n");
printf(" The <frames> range should account for the maximum expected text size and whether programs start their text together or not.\n");
printf(" Extraction stops once a complete text has been extracted for all programs.\n");
printf(" If the program description text is not required then set <frames> to 0 to extract RDD 6 from frame 0 only.\n");
printf(" --mca-detail Show detailed MCA channel label information\n");
printf("\n");
printf(" -p | --ess-out <prefix>\n");
Expand Down

0 comments on commit 5a7b1d4

Please sign in to comment.