-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinfo.h
154 lines (136 loc) · 3.75 KB
/
info.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
/** phiola: executor: 'info' command
2023, Simon Zolin */
static int info_help()
{
help_info_write("\
Analyze audio files:\n\
`phiola info` [OPTIONS] INPUT...\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\
`-duration` Print total duration\n\
`-tags` Print all meta tags\n\
\n\
`-tracks` NUMBER[,...] Select only specific tracks in a .cue list\n\
\n\
`-seek` TIME Seek to time:\n\
[[HH:]MM:]SS[.MSC]\n\
`-until` TIME Stop at time\n\
\n\
`-loudness` Analyze audio loudness\n\
`-peaks` Analyze audio and print some details\n\
\n\
`-perf` Print performance counters\n\
");
x->exit_code = 0;
return 1;
}
struct cmd_info {
u_char duration;
u_char loudness;
u_char pcm_peaks;
u_char perf;
u_char tags;
ffvec include, exclude; // ffstr[]
ffvec input; // ffstr[]
ffvec tracks; // uint[]
uint64 seek;
uint64 until;
};
static int info_seek(struct cmd_info *p, ffstr s) { return cmd_time_value(&p->seek, s); }
static int info_until(struct cmd_info *p, ffstr s) { return cmd_time_value(&p->until, s); }
static int info_include(struct cmd_info *p, ffstr s)
{
*ffvec_pushT(&p->include, ffstr) = s;
return 0;
}
static int info_exclude(struct cmd_info *p, ffstr s)
{
*ffvec_pushT(&p->exclude, ffstr) = s;
return 0;
}
static int info_tracks(struct cmd_info *p, ffstr s) { return cmd_tracks(&p->tracks, s); }
static int info_input(struct cmd_info *p, 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(&p->input, s);
}
static int info_action(struct cmd_info *p)
{
x->queue->on_change(q_on_change);
struct phi_track_conf c = {
.ifile = {
.include = *(ffslice*)&p->include,
.exclude = *(ffslice*)&p->exclude,
},
.tracks = *(ffslice*)&p->tracks,
.seek_msec = p->seek,
.until_msec = p->until,
.afilter = {
.peaks_info = p->pcm_peaks,
.loudness_summary = p->loudness,
},
.info_only = !(p->pcm_peaks || p->loudness),
.print_tags = p->tags,
.print_time = p->perf,
};
struct phi_queue_conf qc = {
.first_filter = &phi_guard,
.ui_module = "tui.play",
.tconf = c,
.analyze = 1,
};
x->queue->create(&qc);
ffstr *it;
FFSLICE_WALK(&p->input, it) {
struct phi_queue_entry qe = {
.url = it->ptr,
};
x->queue->add(NULL, &qe);
}
ffvec_free(&p->input);
x->sum_duration = p->duration;
x->queue->play(NULL, NULL);
return 0;
}
static int info_check(struct cmd_info *p)
{
if (!p->input.len)
return _ffargs_err(&x->cmd, 1, "please specify input file");
return 0;
}
#define O(m) (void*)FF_OFF(struct cmd_info, m)
static const struct ffarg cmd_info[] = {
{ "-duration", '1', O(duration) },
{ "-exclude", '+S', info_exclude },
{ "-help", 0, info_help },
{ "-include", '+S', info_include },
{ "-loudness", '1', O(loudness) },
{ "-peaks", '1', O(pcm_peaks) },
{ "-perf", '1', O(perf) },
{ "-seek", 'S', info_seek },
{ "-tags", '1', O(tags) },
{ "-tracks", 'S', info_tracks },
{ "-until", 'S', info_until },
{ "\0\1", 'S', info_input },
{ "", 0, info_check },
};
#undef O
static void cmd_info_free(struct cmd_info *p)
{
ffvec_free(&p->include);
ffvec_free(&p->exclude);
ffmem_free(p);
}
static struct ffarg_ctx cmd_info_init(void *obj)
{
return SUBCMD_INIT(ffmem_new(struct cmd_info), cmd_info_free, info_action, cmd_info);
}