1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
//! # REAPER Regions CLI
//!
//! Command-line interface for extracting Reaper region markers from WAV files.
//! This tool parses WAV files created with Reaper DAW and outputs markers
//! and regions in various formats.
//!
//! ## Usage
//! ```bash
//! reaper-regions audio.wav
//! reaper-regions audio.wav --format json
//! reaper-regions audio.wav --format csv --no-header
//! reaper-regions audio.wav --debug
//! ```
//!
//! ## Output Formats
//! - Human-readable (default): Easy to read in terminal
//! - JSON: JavaScript Object Notation
//! - Delimited, with or without headers, for piping into other programs.
//! - CSV: Comma-separated
//! - TSV: Tab-separated
//! - PSV: Pipe-separated
//!
//! ## Installation
//! ```bash
//! cargo install reaper-regions
//! ```
//!
//! ## Example JSON output
//!
//! ```json
//! {
//! "markers": [
//! {
//! "duration": 12.41,
//! "end": 886374,
//! "end_time": 18.466,
//! "id": 1,
//! "name": "Region 1",
//! "start": 290708,
//! "start_time": 6.056,
//! "type": "Region"
//! },
//! {
//! "id": 2,
//! "name": "Marker 1",
//! "start": 383050,
//! "start_time": 7.98,
//! "type": "Marker"
//! },
//! {
//! "duration": 9.085,
//! "end": 1496290,
//! "end_time": 31.173,
//! "id": 3,
//! "name": "Region 2",
//! "start": 1060229,
//! "start_time": 22.088,
//! "type": "Region"
//! }, ...
//! ],
//! "path": "tests/fixtures/3-markers-3-regions-overlapping_stripped.wav",
//! "sample_rate": 48000
//! }
//! ```
//!
//! ## Example PSV output
//! ```
//! type|id|name|start|end|start_time|end_time|duration|sample_rate
//! region|1|Region 1|290708|886374|6.056|18.466|12.410|48000
//! marker|2|Marker 1|383050||7.980|||48000
//! region|3|Region 2|1060229|1496290|22.088|31.173|9.085|48000
//! ```
//!
//! ## Example human output
//! ```
//! File: tests/fixtures/3-markers-3-regions-overlapping_stripped.wav
//! Sample rate: 48000 Hz
//! Total markers: 6
//!
//! Region (ID: 1): 'Region 1'
//! Start: 6.056s (290708 samples)
//! End: 18.466s (886374 samples)
//! Duration: 12.410s (12.409708333333334 samples)
//!
//! Marker (ID: 2): 'Marker 1'
//! Position: 7.980s (383050 samples)
//!
//! Region (ID: 3): 'Region 2'
//! Start: 22.088s (1060229 samples)
//! End: 31.173s (1496290 samples)
//! Duration: 9.085s (9.084604166666665 samples)
//! ...
//! ```
//!
//! ## Acknowledgements / License
//!
//! REAPER is a trademark and the copyright property of [Cockos, Incorporated](https://www.cockos.com/).
//! This library is free, open source, and MIT-licensed.
use ;
use Builder;
use ;
use ;
use serde_json;
use io;
use EnumMessage;
/// Extract Reaper region markers from WAV files.
/// Supported output formats for marker data.
///
/// Each format is optimized for different use cases:
/// - Human: Terminal viewing and manual inspection
/// - JSON: Programmatic consumption and data exchange
/// - CSV/TSV/PSV: Spreadsheets and data processing pipelines
/// Main entry point for the Reaper Regions CLI.
///
/// This function:
/// 1. Parses command-line arguments
/// 2. Configures logging based on debug flag
/// 3. Calls the parser to extract markers from the WAV file
/// 4. Routes output to the appropriate format handler
///
/// # Exit Codes
/// - 0: Success
/// - 1: Parsing error or invalid file
///
/// # Panics
/// May panic if logging cannot be initialized or if output
/// formatting fails (though errors are typically handled gracefully).
/// Outputs parsed markers in JSON format.
///
/// # Arguments
/// * `result` - The parsing result containing markers or an error
///
/// # Output
/// Prints JSON to stdout with the following structure:
/// ```json
/// {
/// "path": "audio.wav",
/// "sample_rate": 44100,
/// "markers": [...],
/// "reason": "NoLabels",
/// "reason_text": "No label chunks were found in the file"
/// }
/// ```
///
/// If parsing fails, outputs an error object:
/// ```json
/// {
/// "error": "Error message here"
/// }
/// ```
/// Outputs parsed markers in delimited format (CSV, TSV, PSV).
///
/// # Arguments
/// * `result` - The parsing result containing markers
/// * `delimiter` - Character to use as field delimiter
/// * `include_header` - Whether to include a header row
///
/// # Fields
/// The output includes these columns:
/// - type: "marker" or "region"
/// - id: Unique marker ID
/// - name: Marker label
/// - start: Start position in samples
/// - end: End position in samples (empty for markers)
/// - start_time: Start time in seconds (rounded to 3 decimals)
/// - end_time: End time in seconds (empty for markers)
/// - duration: Duration in seconds (empty for markers)
/// - sample_rate: File sample rate in Hz
///
/// # Panics
/// Will panic if CSV writing fails, though this is rare for stdout.
/// Outputs parsed markers in human-readable format.
///
/// # Arguments
/// * `result` - The parsing result containing markers
///
/// # Output
/// Prints formatted output with:
/// - File path
/// - Sample rate
/// - Marker count
/// - Parsing reason (if any)
/// - Detailed list of markers and regions with timing information
///
/// Example output:
/// ```
/// File: audio.wav
/// Sample rate: 44100 Hz
/// Total markers: 3
///
/// Region (ID: 1): 'Verse'
/// Start: 0.000s (0 samples)
/// End: 4.410s (44100 samples)
/// Duration: 4.410s
///
/// Marker (ID: 2): 'Chorus Start'
/// Position: 4.410s (44100 samples)
/// ```