Changeset aef9691


Ignore:
Timestamp:
Sep 21, 2016, 1:49:22 AM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
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.
Message:

Merge branch 'master' into pitchshift

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • doc/aubiomfcc.txt

    rc2f7db8 raef9691  
    77  aubiomfcc [[-i] source]
    88            [-r rate] [-B win] [-H hop]
     9            [-T time-format]
    910            [-v] [-h]
    1011
     
    3839  Defaults to 256.
    3940
     41  -T, --timeformat format  Set time format (samples, ms, seconds). Defaults to
     42  seconds.
     43
    4044  -h, --help  Print a short help message and exit.
    4145
  • doc/aubionotes.txt

    rc2f7db8 raef9691  
    99             [-O method] [-t thres]
    1010             [-p method] [-u unit] [-l thres]
     11             [-T time-format]
    1112             [-s sil]
    1213             [-j] [-v] [-h]
     
    6566  loudest ones. A value of -90.0 would select all onsets. Defaults to -90.0.
    6667
     68  -T, --timeformat format  Set time format (samples, ms, seconds). Defaults to
     69  seconds.
     70
    6771  -j, --jack  Use Jack input/output. You will need a Jack connection
    6872  controller to feed aubio some signal and listen to its output.
  • doc/aubioonset.txt

    rc2f7db8 raef9691  
    88             [-r rate] [-B win] [-H hop]
    99             [-O method] [-t thres]
     10             [-T time-format]
    1011             [-s sil] [-m] [-f]
    1112             [-j] [-v] [-h]
     
    5556  will not be detected. A value of -20.0 would eliminate most onsets but the
    5657  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.
    5761
    5862  -m, --mix-input  Mix source signal to the output signal before writing to
  • doc/aubiopitch.txt

    rc2f7db8 raef9691  
    88             [-r rate] [-B win] [-H hop]
    99             [-p method] [-u unit] [-l thres]
     10             [-T time-format]
    1011             [-s sil] [-f]
    1112             [-v] [-h] [-j]
     
    5960  will not be detected. A value of -20.0 would eliminate most onsets but the
    6061  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.
    6165
    6266  -m, --mix-input  Mix source signal to the output signal before writing to
  • doc/aubioquiet.txt

    rc2f7db8 raef9691  
    77  aubioquiet [[-i] source]
    88             [-r rate] [-B win] [-H hop]
     9             [-T time-format]
    910             [-s sil]
    1011             [-v] [-h]
     
    3940  will not be detected. Defaults to -90.0.
    4041
     42  -T, --timeformat format  Set time format (samples, ms, seconds). Defaults to
     43  seconds.
     44
    4145  -h, --help  Print a short help message and exit.
    4246
  • doc/aubiotrack.txt

    rc2f7db8 raef9691  
    77  aubiotrack [[-i] source] [-o sink]
    88             [-r rate] [-B win] [-H hop]
     9             [-T time-format]
    910             [-s sil] [-m]
    1011             [-j] [-v] [-h]
     
    5455  controller to feed aubio some signal and listen to its output.
    5556
     57  -T, --timeformat format  Set time format (samples, ms, seconds). Defaults to
     58  seconds.
     59
    5660  -h, --help  Print a short help message and exit.
    5761
  • python/tests/test_source.py

    rc2f7db8 raef9691  
    2828class aubio_source_test_case(aubio_source_test_case_base):
    2929
    30     def test_close_file(self):
     30    @params(*list_of_sounds)
     31    def test_close_file(self, filename):
    3132        samplerate = 0 # use native samplerate
    3233        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()
    3636
    37     def test_close_file_twice(self):
     37    @params(*list_of_sounds)
     38    def test_close_file_twice(self, filename):
    3839        samplerate = 0 # use native samplerate
    3940        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()
    4444
    4545class aubio_source_read_test_case(aubio_source_test_case_base):
Note: See TracChangeset for help on using the changeset viewer.