forked from landorg/bpm-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bpm.1
73 lines (56 loc) · 1.16 KB
/
bpm.1
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
.TH BPM "1"
.SH NAME
bpm-tools \- calculate the tempo of music files
.SH SYNOPSIS
.B bpm-tag
[\fIoptions\fR] \fIfile\fR
.B bpm-graph
\fIfile\fR
.B bpm
[\fIoptions\fR] < \fIfile.raw\fR
.SH DESCRIPTION
The
.B bpm-tools
commands are used to automatically calculate the tempo (in
beats-per-minute) of music, optionally displaying an analysis
and adding it to file 'tags'. The data from these tags can be
especially useful for navigating a music library in DJ software
such as
.B xwax(1).
The
.B bpm
command implements the algorithm on raw data, but
the most commonly used command is
.B bpm-tag.
.SH OPTIONS
Options are described by the commands themselves. Use one of the
following for more information:
.sp
.RS
bpm-tag -h
bpm-graph -h
bpm -h
.RE
.SH EXAMPLES
.P
Tag a file with its tempo:
.sp
.RS
bpm-tag "Daft Punk - Get Lucky.mp3"
.RE
.P
Calculate and display the tempo of a file without modifying it:
.sp
.RS
bpm-tag -f -n "Gwen Guthrie - Padlock.flac"
.RE
.P
Tag a file, with a hint to look for a fast tempo:
.sp
.RS
bpm-tag -m 120 -x 200 "Roni Size - Brown Paper Bag.oga"
.RE
.SH HOMEPAGE
http://www.pogo.org.uk/~mark/bpm-tools/
.SH AUTHOR
Mark Hills <mark@xwax.org>