Changeset b7208f8
- Timestamp:
- Mar 23, 2017, 3:32:21 PM (8 years ago)
- 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
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/aubio.txt
r4077fa1 rb7208f8 14 14 pitch extract fundamental frequency 15 15 beat get locations of beats 16 tempo get overall tempo in bpm 16 17 notes get midi-like notes 17 18 mfcc extract mel-frequency cepstrum coefficients … … 89 90 is 512. 90 91 92 TEMPO 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 91 99 NOTES 92 100 -
python/lib/aubio/cmd.py
r4077fa1 rb7208f8 63 63 # tempo subcommand 64 64 subparser = subparsers.add_parser('tempo', 65 help='get locations of beats')65 help='get overal tempo in bpm') 66 66 parser_add_input(subparser) 67 67 parser_add_buf_hop_size(subparser, buf_size=1024, hop_size=512)
Note: See TracChangeset
for help on using the changeset viewer.