-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnausea.1
More file actions
63 lines (63 loc) · 1.24 KB
/
Copy pathnausea.1
File metadata and controls
63 lines (63 loc) · 1.24 KB
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
.Dd Sep 15, 2014
.Dt NAUSEA 1
.Os
.Sh NAME
.Nm nausea
.Nd curses audio visualizer
.Sh SYNOPSIS
.Nm nausea
.Op Fl hcpklb
.Op Fl d Ar num
.Op Ar fifo
.Sh DESCRIPTION
The
.Nm
program performs a discrete fourier transform and plots the spectrogram
in real time using curses. It can also just display the audio waveform.
The current implementation expects the input stream to be 44.1kHz,
16-bit little endian and 2 channels. The default
.Ar fifo
path is
.Pa /tmp/audio.fifo .
.Pp
The options are as follows:
.Bl -tag -width Ds
.It Fl h
Show usage line.
.It Fl d Ar num
Choose a visualization using its number from below.
.It Fl c
Enable color.
.It Fl p
Enable falling peaks in the spectrum visualization.
.It Fl k
Keep state in the fountain visualization.
.It Fl l
Go left in the fountain visualization.
.It Fl b
Enable bounce mode in the fountain visualization.
.El
.Pp
Exposed runtime options:
.Bl -tag -width Ds
.It 1
Select the spectrum visualization.
.It 2
Select the wave visualization.
.It 3
Select the fountain visualization.
.It c
Toggle color.
.It p
Toggle falling peaks.
.It k
Toggle keep state.
.It l
Toggle direction.
.It b
Toggle bounce mode.
.It n or [Right]
Cycle visualizations in ascending order.
.It N or [Left]
Cycle visualizations in descending order.
.El