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

python/tests/test_source.py: simplify print

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/tests/test_source.py

    r0229e51 rfbd7c80  
    3939            total_frames += read
    4040            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))
    4544        return total_frames
    4645
     
    109108            total_frames += read
    110109            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))
    116113        return total_frames
    117114
Note: See TracChangeset for help on using the changeset viewer.