Changeset fbd7c80
- Timestamp:
- Apr 19, 2016, 12:49:21 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:
- ccb9fb5
- Parents:
- 0229e51
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/tests/test_source.py
r0229e51 rfbd7c80 39 39 total_frames += read 40 40 if read < f.hop_size: break 41 print ("read", "%.2fs" % (total_frames / float(f.samplerate) ) ), 42 print ("(", total_frames, "frames", "in" ), 43 print (total_frames / f.hop_size, "blocks", "at", "%dHz" % f.samplerate, ")" ), 44 print ("from", f.uri) 41 result_str = "read {:.2f}s ({:d} frames in {:d} blocks at {:d}Hz) from {:s}" 42 params = total_frames / float(f.samplerate), total_frames, int(total_frames/f.hop_size), f.samplerate, f.uri 43 print (result_str.format(*params)) 45 44 return total_frames 46 45 … … 109 108 total_frames += read 110 109 if read < f.hop_size: break 111 print ("read", "%.2fs" % (total_frames / float(f.samplerate) ) ), 112 print ("(", total_frames, "frames", "in" ), 113 print (f.channels, "channels and" ), 114 print (total_frames / f.hop_size, "blocks", "at", "%dHz" % f.samplerate, ")" ), 115 print ("from", f.uri) 110 result_str = "read {:.2f}s ({:d} frames in {:d} channels and {:d} blocks at {:d}Hz) from {:s}" 111 params = total_frames / float(f.samplerate), total_frames, f.channels, int(total_frames/f.hop_size), f.samplerate, f.uri 112 print (result_str.format(*params)) 116 113 return total_frames 117 114
Note: See TracChangeset
for help on using the changeset viewer.