Changeset 86026a0 for python


Ignore:
Timestamp:
Mar 24, 2017, 2:55:22 AM (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:
62a94b7
Parents:
af98cb8
Message:

python/lib/aubio/cmd.py: improve descriptions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/lib/aubio/cmd.py

    raf98cb8 r86026a0  
    2525    # onset subcommand
    2626    subparser = subparsers.add_parser('onset',
    27             help='get onset times',
     27            help='estimate time of onsets (beginning of sound event)',
    2828            formatter_class = argparse.ArgumentDefaultsHelpFormatter)
    2929    parser_add_input(subparser)
     
    4141    # pitch subcommand
    4242    subparser = subparsers.add_parser('pitch',
    43             help='extract fundamental frequency')
     43            help='estimate fundamental frequency (monophonic)')
    4444    parser_add_input(subparser)
    4545    parser_add_buf_hop_size(subparser, buf_size=2048)
     
    5252    subparser.set_defaults(process=process_pitch)
    5353
    54     # tempo subcommand
     54    # beat subcommand
    5555    subparser = subparsers.add_parser('beat',
    56             help='get locations of beats')
     56            help='estimate location of beats')
    5757    parser_add_input(subparser)
    5858    parser_add_buf_hop_size(subparser, buf_size=1024, hop_size=512)
     
    6363    # tempo subcommand
    6464    subparser = subparsers.add_parser('tempo',
    65             help='get overal tempo in bpm')
     65            help='estimate overall tempo in bpm')
    6666    parser_add_input(subparser)
    6767    parser_add_buf_hop_size(subparser, buf_size=1024, hop_size=512)
     
    7272    # notes subcommand
    7373    subparser = subparsers.add_parser('notes',
    74             help='get midi-like notes')
     74            help='estimate midi-like notes (monophonic)')
    7575    parser_add_input(subparser)
    7676    parser_add_buf_hop_size(subparser)
     
    8181    # mfcc subcommand
    8282    subparser = subparsers.add_parser('mfcc',
    83             help='extract mel-frequency cepstrum coefficients')
     83            help='extract Mel-Frequency Cepstrum Coefficients')
    8484    parser_add_input(subparser)
    8585    parser_add_buf_hop_size(subparser)
     
    9090    # melbands subcommand
    9191    subparser = subparsers.add_parser('melbands',
    92             help='extract mel-frequency energies per band')
     92            help='extract energies in Mel-frequency bands')
    9393    parser_add_input(subparser)
    9494    parser_add_buf_hop_size(subparser)
Note: See TracChangeset for help on using the changeset viewer.