Changeset aef9691
- Timestamp:
- Sep 21, 2016, 1:49:22 AM (8 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
- Children:
- 6e8aa74
- Parents:
- c2f7db8 (diff), 980a4f4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/aubiomfcc.txt
rc2f7db8 raef9691 7 7 aubiomfcc [[-i] source] 8 8 [-r rate] [-B win] [-H hop] 9 [-T time-format] 9 10 [-v] [-h] 10 11 … … 38 39 Defaults to 256. 39 40 41 -T, --timeformat format Set time format (samples, ms, seconds). Defaults to 42 seconds. 43 40 44 -h, --help Print a short help message and exit. 41 45 -
doc/aubionotes.txt
rc2f7db8 raef9691 9 9 [-O method] [-t thres] 10 10 [-p method] [-u unit] [-l thres] 11 [-T time-format] 11 12 [-s sil] 12 13 [-j] [-v] [-h] … … 65 66 loudest ones. A value of -90.0 would select all onsets. Defaults to -90.0. 66 67 68 -T, --timeformat format Set time format (samples, ms, seconds). Defaults to 69 seconds. 70 67 71 -j, --jack Use Jack input/output. You will need a Jack connection 68 72 controller to feed aubio some signal and listen to its output. -
doc/aubioonset.txt
rc2f7db8 raef9691 8 8 [-r rate] [-B win] [-H hop] 9 9 [-O method] [-t thres] 10 [-T time-format] 10 11 [-s sil] [-m] [-f] 11 12 [-j] [-v] [-h] … … 55 56 will not be detected. A value of -20.0 would eliminate most onsets but the 56 57 loudest ones. A value of -90.0 would select all onsets. Defaults to -90.0. 58 59 -T, --timeformat format Set time format (samples, ms, seconds). Defaults to 60 seconds. 57 61 58 62 -m, --mix-input Mix source signal to the output signal before writing to -
doc/aubiopitch.txt
rc2f7db8 raef9691 8 8 [-r rate] [-B win] [-H hop] 9 9 [-p method] [-u unit] [-l thres] 10 [-T time-format] 10 11 [-s sil] [-f] 11 12 [-v] [-h] [-j] … … 59 60 will not be detected. A value of -20.0 would eliminate most onsets but the 60 61 loudest ones. A value of -90.0 would select all onsets. Defaults to -90.0. 62 63 -T, --timeformat format Set time format (samples, ms, seconds). Defaults to 64 seconds. 61 65 62 66 -m, --mix-input Mix source signal to the output signal before writing to -
doc/aubioquiet.txt
rc2f7db8 raef9691 7 7 aubioquiet [[-i] source] 8 8 [-r rate] [-B win] [-H hop] 9 [-T time-format] 9 10 [-s sil] 10 11 [-v] [-h] … … 39 40 will not be detected. Defaults to -90.0. 40 41 42 -T, --timeformat format Set time format (samples, ms, seconds). Defaults to 43 seconds. 44 41 45 -h, --help Print a short help message and exit. 42 46 -
doc/aubiotrack.txt
rc2f7db8 raef9691 7 7 aubiotrack [[-i] source] [-o sink] 8 8 [-r rate] [-B win] [-H hop] 9 [-T time-format] 9 10 [-s sil] [-m] 10 11 [-j] [-v] [-h] … … 54 55 controller to feed aubio some signal and listen to its output. 55 56 57 -T, --timeformat format Set time format (samples, ms, seconds). Defaults to 58 seconds. 59 56 60 -h, --help Print a short help message and exit. 57 61 -
python/tests/test_source.py
rc2f7db8 raef9691 28 28 class aubio_source_test_case(aubio_source_test_case_base): 29 29 30 def test_close_file(self): 30 @params(*list_of_sounds) 31 def test_close_file(self, filename): 31 32 samplerate = 0 # use native samplerate 32 33 hop_size = 256 33 for p in list_of_sounds: 34 f = source(p, samplerate, hop_size) 35 f.close() 34 f = source(filename, samplerate, hop_size) 35 f.close() 36 36 37 def test_close_file_twice(self): 37 @params(*list_of_sounds) 38 def test_close_file_twice(self, filename): 38 39 samplerate = 0 # use native samplerate 39 40 hop_size = 256 40 for p in list_of_sounds: 41 f = source(p, samplerate, hop_size) 42 f.close() 43 f.close() 41 f = source(filename, samplerate, hop_size) 42 f.close() 43 f.close() 44 44 45 45 class aubio_source_read_test_case(aubio_source_test_case_base):
Note: See TracChangeset
for help on using the changeset viewer.