Changeset b7208f8


Ignore:
Timestamp:
Mar 23, 2017, 3:32:21 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler
Children:
af98cb8
Parents:
4077fa1
Message:

python/lib/aubio/cmd.py: improve tempo subcommand description

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/aubio.txt

    r4077fa1 rb7208f8  
    1414  pitch        extract fundamental frequency
    1515  beat         get locations of beats
     16  tempo        get overall tempo in bpm
    1617  notes        get midi-like notes
    1718  mfcc         extract mel-frequency cepstrum coefficients
     
    8990  is 512.
    9091
     92TEMPO
     93
     94  The "tempo" command accepts all common options and no additional options.
     95
     96  The default buffer size for the beat algorithm is 1024. The default hop size
     97  is 512.
     98
    9199NOTES
    92100
  • python/lib/aubio/cmd.py

    r4077fa1 rb7208f8  
    6363    # tempo subcommand
    6464    subparser = subparsers.add_parser('tempo',
    65             help='get locations of beats')
     65            help='get overal tempo in bpm')
    6666    parser_add_input(subparser)
    6767    parser_add_buf_hop_size(subparser, buf_size=1024, hop_size=512)
Note: See TracChangeset for help on using the changeset viewer.