You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

85 lines
1.8 KiB

  1. .TH "cueconvert" "1"
  2. .SH NAME
  3. cueconvert \- convert files between CUE and TOC formats
  4. .SH SYNOPSIS
  5. .B cueconvert
  6. [
  7. .B \-i
  8. .I format
  9. |
  10. .BR \-\-input\-format =\fIformat\fP
  11. ] [
  12. .B \-o
  13. .I format
  14. |
  15. .BR \-\-output\-format =\fIformat\fP
  16. ] [
  17. .I infile
  18. [
  19. .I outfile
  20. ] ]
  21. .br
  22. .B cueconvert \-h | \-\-help
  23. .br
  24. .B cueconvert \-V | \-\-version
  25. .SH DESCRIPTION
  26. .B cueconvert
  27. coverts files between the CUE and TOC formats, each of which are commonly
  28. used by compact disc ripping software to denote track breakpoints and other
  29. data.
  30. .PP
  31. The operands are optional; if
  32. .I infile
  33. is not specified,
  34. .B cueconvert
  35. reads from standard input, and if
  36. .I outfile
  37. is not specified, it writes to standard output.
  38. .PP
  39. If no filenames are specified, standard input is used, and an input format
  40. option
  41. .I must
  42. be specified.
  43. The complementary format is used for output.
  44. .PP
  45. If filenames are provided, but format options are not specified,
  46. the input and output formats will be guessed based on each filename's
  47. suffix (e.g.,
  48. .I .cue
  49. or
  50. .IR .toc ).
  51. This heuristic is case-insensitive.
  52. .SH OPTIONS
  53. .TP
  54. .BR \-h ", " \-\-help
  55. displays a usage message and exits.
  56. .TP
  57. .BR \-i " \fIformat\fP, " \-\-input\-format=\fIformat\fP
  58. sets the expected format of the input file to
  59. .IR format .
  60. .TP
  61. .BR \-o " \fIformat\fP, " \-\-output\-format=\fIformat\fP
  62. sets the format of the generated output file to
  63. .IR format .
  64. .TP
  65. .B \-V ", " \-\-version
  66. displays version information and exits.
  67. .PP
  68. The option argument
  69. .I format
  70. must be either
  71. .B cue
  72. or
  73. .BR toc .
  74. .SH "EXIT STATUS"
  75. .B cueconvert
  76. exits with status zero if it successfully coverts the input file, and
  77. nonzero if there were problems.
  78. .SH AUTHOR
  79. Cuetools was written by Svend Sorensen.
  80. Branden Robinson contributed fixes and enhancements to the utilities and
  81. documentation.
  82. .SH "SEE ALSO"
  83. .BR cuebreakpoints(1),
  84. .BR cueprint(1)