From b7208f8424f035a2b3de69185d4a6de2b081c980 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 23 Mar 2017 15:32:21 +0100 Subject: [PATCH] python/lib/aubio/cmd.py: improve tempo subcommand description --- doc/aubio.txt | 8 ++++++++ python/lib/aubio/cmd.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/doc/aubio.txt b/doc/aubio.txt index 2bcb8aff..bee9eb1d 100644 --- a/doc/aubio.txt +++ b/doc/aubio.txt @@ -13,6 +13,7 @@ COMMANDS onset get onset times pitch extract fundamental frequency beat get locations of beats + tempo get overall tempo in bpm notes get midi-like notes mfcc extract mel-frequency cepstrum coefficients melbands extract mel-frequency energies per band @@ -88,6 +89,13 @@ BEAT The default buffer size for the beat algorithm is 1024. The default hop size is 512. +TEMPO + + The "tempo" command accepts all common options and no additional options. + + The default buffer size for the beat algorithm is 1024. The default hop size + is 512. + NOTES The "note" command accepts all common options and no additional options. diff --git a/python/lib/aubio/cmd.py b/python/lib/aubio/cmd.py index 2ee823e0..41d5489f 100644 --- a/python/lib/aubio/cmd.py +++ b/python/lib/aubio/cmd.py @@ -62,7 +62,7 @@ def aubio_parser(): # tempo subcommand subparser = subparsers.add_parser('tempo', - help='get locations of beats') + help='get overal tempo in bpm') parser_add_input(subparser) parser_add_buf_hop_size(subparser, buf_size=1024, hop_size=512) parser_add_time_format(subparser) -- 2.11.0