- Timestamp:
- Apr 19, 2016, 12:45:12 AM (9 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, pitchshift, sampler, timestretch, yinfft+
- Children:
- 0229e51
- Parents:
- e76842e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_note2midi.py
re76842e r9b7f238 1 1 #! /usr/bin/env python 2 2 # -*- coding: utf-8 -*- 3 4 from __future__ import unicode_literals 3 5 4 6 from aubio import note2midi, freq2note … … 15 17 ( 'A#4', 70 ), 16 18 ( 'Bb4', 70 ), 17 ( u'B♭4', 70 ),19 ( 'B♭4', 70 ), 18 20 ( 'G8', 115 ), 19 ( u'G♯8', 116 ),21 ( 'G♯8', 116 ), 20 22 ( 'G9', 127 ), 21 ( u'G\udd2a2', 45 ),22 ( u'B\ufffd2', 45 ),23 ( u'A♮2', 45 ),23 ( 'G\udd2a2', 45 ), 24 ( 'B\ufffd2', 45 ), 25 ( 'A♮2', 45 ), 24 26 ) 25 27
Note: See TracChangeset
for help on using the changeset viewer.