-
Notifications
You must be signed in to change notification settings - Fork 7
/
convert.h
339 lines (312 loc) · 10.5 KB
/
convert.h
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
/** phiola: executor: 'convert' command
2023, Simon Zolin */
static int conv_help()
{
help_info_write("\
Convert audio:\n\
`phiola convert` INPUT... -o OUTPUT [OPTIONS]\n\
\n\
INPUT File name, directory or URL\n\
`@stdin` Read from standard input\n\
`@names` Read file names from standard input\n\
\n\
Options:\n\
`-include` WILDCARD Only include files matching a wildcard (case-insensitive)\n\
`-exclude` WILDCARD Exclude files & directories matching a wildcard (case-insensitive)\n\
\n\
`-tracks` NUMBER[,...] Select only specific tracks in a .cue list\n\
\n\
`-cue_gaps` STRING Control track pregaps:\n\
`skip` Skip pregaps, e.g.:\n\
track01.index01 .. track02.index00\n\
`current` Add gap to the beginning of the current track, e.g.:\n\
track01.index00 .. track02.index00\n\
`previous` Add gap to the previous track,\n\
but track01's pregap is preserved, e.g.:\n\
track01.index00 .. track02.index01\n\
track02.index01 .. track03.index01\n\
By default, adds gap to the previous track, e.g.:\n\
track01.index01 .. track02.index01\n\
\n\
`-seek` TIME Seek to time: [[HH:]MM:]SS[.MSC]\n\
`-until` TIME Stop at time\n\
\n\
`-aformat` FORMAT Audio sample format:\n\
int8 | int16 | int24 | int32 | float32\n\
`-rate` NUMBER Sample rate\n\
`-channels` NUMBER Channels number\n\
`-danorm` \"OPTIONS\" Apply Dynamic Audio Normalizer filter. Options:\n\
`frame` Integer\n\
`size` Integer\n\
`peak` Float\n\
`max-amp` Float\n\
`target-rms` Float\n\
`compress` Float\n\
`-gain` NUMBER Gain/attenuation in dB\n\
\n\
`-copy` Copy audio data without re-encoding\n\
`-aac_profile` STRING AAC profile:\n\
`LC` AAC-LC\n\
`HE` AAC-HE\n\
`HE2` AAC-HEv2\n\
`-aac_quality` NUMBER AAC encoding quality:\n\
1..5 (VBR) or 8..800 (CBR, kbit/s)\n\
`-aac_bandwidth` NUMBER\n\
AAC cut-off frequency, Hz (<=20000)\n\
`-opus_quality` NUMBER Opus encoding bitrate:\n\
6..510 (VBR)\n\
`-opus_mode` CHAR Opus mode:\n\
`a` Audio (default)\n\
`v` VOIP\n\
`-vorbis_quality` NUMBER\n\
Vorbis encoding quality:\n\
0..10\n\
\n\
`-meta` NAME=VALUE Meta data\n\
.mp3 supports: album, albumartist, artist, comment, date, genre, picture, publisher, title, tracknumber, tracktotal.\n\
.mp4 supports: album, albumartist, artist, comment, composer, copyright, date, discnumber, genre, lyrics, title, tracknumber.\n\
.flac, .ogg support tags of any name, but the use of MP3/MP4-compatible names is recommended.\n\
\n\
`-out` FILE Output file name.\n\
`@stdout` Write to standard output\n\
The encoder is selected automatically from the given file extension:\n\
.m4a AAC\n\
.ogg Vorbis\n\
.opus Opus\n\
.flac FLAC\n\
.wav PCM\n\
Supports runtime variable expansion:\n\
`@filepath` Expands to the input file path\n\
`@filename` Input file name (without extension)\n\
`@nowdate` Current date\n\
`@nowtime` Current time\n\
`@counter` Sequentially incremented number\n\
@STRING Expands to file meta data,\n\
e.g. `-o \"@tracknumber. @artist - @title.flac\"`\n\
When file name isn't specified, @filename is used automatically,\n\
e.g. `-o .ogg` == `-o @filename.ogg`\n\
`-force` Overwrite output file\n\
`-preserve_date` Preserve file modification date\n\
\n\
`-workers` N Max. number of workers\n\
`-cpu_affinity` STRING Set Worker-CPU affinity:\n\
`auto`\n\
`-perf` Print performance counters\n\
");
x->exit_code = 0;
return 1;
}
struct cmd_conv {
const char* aac_profile;
const char* opus_mode;
const char* danorm;
const char* output;
ffvec include, exclude; // ffstr[]
ffvec input; // ffstr[]
ffvec meta;
ffvec tracks; // uint[]
int gain;
u_char copy;
u_char cue_gaps;
u_char perf;
uint aac_bandwidth;
uint aac_q;
uint aformat;
uint channels;
uint force;
uint opus_q;
uint opus_mode_n;
uint preserve_date;
uint rate;
uint vorbis_q;
uint64 seek;
uint64 until;
};
static int conv_include(struct cmd_conv *v, ffstr s)
{
*ffvec_pushT(&v->include, ffstr) = s;
return 0;
}
static int conv_exclude(struct cmd_conv *v, ffstr s)
{
*ffvec_pushT(&v->exclude, ffstr) = s;
return 0;
}
static int conv_aformat(struct cmd_conv *v, ffstr s)
{
if (~0U == (v->aformat = phi_af_val(s)))
return _ffargs_err(&x->cmd, 1, "incorrect audio format '%S'", &s);
return 0;
}
static int conv_meta(struct cmd_conv *v, ffstr s)
{
ffstr name, val;
if (ffstr_splitby(&s, '=', &name, &val) <= 0)
return _ffargs_err(&x->cmd, 1, "invalid meta: '%S'", &s);
*ffvec_pushT(&v->meta, ffstr) = s;
return 0;
}
static int conv_tracks(struct cmd_conv *v, ffstr s) { return cmd_tracks(&v->tracks, s); }
static int conv_input(struct cmd_conv *v, ffstr s)
{
if (s.len && s.ptr[0] == '-')
return _ffargs_err(&x->cmd, 1, "unknown option '%S'. Use '-h' for usage info.", &s);
x->stdin_busy = ffstr_eqz(&s, "@stdin");
return cmd_input(&v->input, s);
}
static int conv_cue_gaps(struct cmd_conv *v, ffstr s)
{
static const char values[][8] = {
"current",
"previous",
"skip",
};
static const u_char numbers[] = {
PHI_CUE_GAP_CURR,
PHI_CUE_GAP_PREV1,
PHI_CUE_GAP_SKIP,
};
int r = ffcharr_findsorted(values, FF_COUNT(values), sizeof(values[0]), s.ptr, s.len);
if (r < 0)
return _ffargs_err(&x->cmd, 1, "-cue_gaps: value '%S' is not recognized", &s);
v->cue_gaps = numbers[r];
return 0;
}
static int conv_seek(struct cmd_conv *v, ffstr s) { return cmd_time_value(&v->seek, s); }
static int conv_until(struct cmd_conv *v, ffstr s) { return cmd_time_value(&v->until, s); }
static int conv_workers(struct cmd_conv *v, uint64 val)
{
x->workers = val;
return 0;
}
static int conv_cpu_affinity(struct cmd_conv *v, ffstr s)
{
if (ffstr_eqz(&s, "auto"))
x->cpu_affinity = ~0U;
else
return _ffargs_err(&x->cmd, 1, "-cpu_affinity: incorrect value: '%S'", &s);
return 0;
}
static void conv_qu_add(struct cmd_conv *v, ffstr *fn)
{
struct phi_track_conf c = {
.ifile = {
.name = ffsz_dupstr(fn),
.include = *(ffslice*)&v->include,
.exclude = *(ffslice*)&v->exclude,
.preserve_date = v->preserve_date,
},
.cue_gaps = v->cue_gaps,
.tracks = *(ffslice*)&v->tracks,
.seek_msec = v->seek,
.until_msec = v->until,
.afilter = {
.gain_db = v->gain,
.danorm = v->danorm,
},
.oaudio = {
.format = {
.format = v->aformat,
.rate = v->rate,
.channels = v->channels,
},
},
.aac = {
.profile = v->aac_profile[0],
.quality = v->aac_q,
.bandwidth = (ushort)v->aac_bandwidth,
},
.vorbis.quality = (v->vorbis_q) ? (v->vorbis_q + 1) * 10 : 0,
.opus = {
.bitrate = v->opus_q,
.mode = v->opus_mode_n,
},
.ofile = {
.name = ffsz_dup(v->output),
.overwrite = v->force,
},
.stream_copy = v->copy,
.print_time = v->perf,
};
cmd_meta_set(&c.meta, &v->meta);
ffvec_free(&v->meta);
struct phi_queue_entry qe = {
.conf = c,
};
x->queue->add(NULL, &qe);
}
static int conv_action(struct cmd_conv *v)
{
x->queue->on_change(q_on_change);
struct phi_queue_conf qc = {
.first_filter = &phi_guard,
.ui_module = "tui.play",
.conversion = 1,
};
x->queue->create(&qc);
ffstr *it;
FFSLICE_WALK(&v->input, it) {
conv_qu_add(v, it);
}
ffvec_free(&v->input);
x->queue->play(NULL, NULL);
return 0;
}
static int conv_prepare(struct cmd_conv *v)
{
if (!v->input.len)
return _ffargs_err(&x->cmd, 1, "please specify input file");
if (!v->output)
return _ffargs_err(&x->cmd, 1, "please specify output file name with '-out FILE'");
if (!(v->aac_profile = cmd_aac_profile(v->aac_profile)))
return _ffargs_err(&x->cmd, 1, "-aac_profile: incorrect value");
if ((int)(v->opus_mode_n = cmd_opus_mode(v->opus_mode)) < 0)
return _ffargs_err(&x->cmd, 1, "-opus_mode: incorrect value");
ffstr name;
ffpath_splitname_str(FFSTR_Z(v->output), &name, NULL);
x->stdout_busy = ffstr_eqz(&name, "@stdout");
return 0;
}
#define O(m) (void*)FF_OFF(struct cmd_conv, m)
static const struct ffarg cmd_conv[] = {
{ "-aac_bandwidth", 'u', O(aac_bandwidth) },
{ "-aac_profile", 's', O(aac_profile) },
{ "-aac_quality", 'u', O(aac_q) },
{ "-aformat", 'S', conv_aformat },
{ "-channels", 'u', O(channels) },
{ "-copy", '1', O(copy) },
{ "-cpu_affinity", 'S', conv_cpu_affinity },
{ "-cue_gaps", 'S', conv_cue_gaps },
{ "-danorm", 's', O(danorm) },
{ "-exclude", 'S', conv_exclude },
{ "-force", '1', O(force) },
{ "-gain", 'd', O(gain) },
{ "-help", 0, conv_help },
{ "-include", 'S', conv_include },
{ "-meta", '+S', conv_meta },
{ "-o", 's', O(output) },
{ "-opus_mode", 's', O(opus_mode) },
{ "-opus_quality", 'u', O(opus_q) },
{ "-out", 's', O(output) },
{ "-perf", '1', O(perf) },
{ "-preserve_date", '1', O(preserve_date) },
{ "-rate", 'u', O(rate) },
{ "-seek", 'S', conv_seek },
{ "-tracks", 'S', conv_tracks },
{ "-until", 'S', conv_until },
{ "-vorbis_quality",'u', O(vorbis_q) },
{ "-workers", 'u', conv_workers },
{ "\0\1", 'S', conv_input },
{ "", 0, conv_prepare },
};
#undef O
static void cmd_conv_free(struct cmd_conv *v)
{
ffvec_free(&v->include);
ffvec_free(&v->exclude);
ffmem_free(v);
}
static struct ffarg_ctx cmd_conv_init(void *obj)
{
return SUBCMD_INIT(ffmem_new(struct cmd_conv), cmd_conv_free, conv_action, cmd_conv);
}