Changeset c2f7db8
- Timestamp:
- Sep 21, 2016, 1:49:16 AM (8 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
- Children:
- aef9691
- Parents:
- 04fc360
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_pitchshift.py
r04fc360 rc2f7db8 72 72 ) 73 73 def test_run_with_params(self, mode, pitchscale, hop_size, samplerate): 74 self.o = aubio.pitchshift(mode, pitchscale, hop_size, samplerate) 74 try: 75 self.o = aubio.pitchshift(mode, pitchscale, hop_size, samplerate) 76 except RuntimeError as e: 77 self.skipTest("creating aubio.pitchshift failed (recompile with rubberband?)") 75 78 test_length = self.o.hop_size * 50 76 79 read = 0
Note: See TracChangeset
for help on using the changeset viewer.