Changeset 7d01fdf
- Timestamp:
- Sep 23, 2016, 7:50:16 AM (8 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
- Children:
- 8526102
- Parents:
- ad65346
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_pitchshift.py
rad65346 r7d01fdf 12 12 self.o = aubio.pitchshift(hop_size = 128) 13 13 except RuntimeError as e: 14 self.skipTest("creating aubio.pitchshift failed (recompile with rubberband?)")14 self.skipTest("creating aubio.pitchshift {}".format(e)) 15 15 16 16 def test_default_creation(self): … … 80 80 self.o = aubio.pitchshift(mode, pitchscale, hop_size, samplerate) 81 81 except RuntimeError as e: 82 self.skipTest(" creating aubio.pitchshift failed (recompile with rubberband?)")82 self.skipTest("failed creating pitchshift ({})".format(e)) 83 83 test_length = self.o.hop_size * 50 84 84 read = 0
Note: See TracChangeset
for help on using the changeset viewer.