Changeset 5ab3c4e for python/lib
- Timestamp:
- Mar 23, 2017, 3:09:28 PM (8 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, sampler
- Children:
- bd72039
- Parents:
- 6288806
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/aubio/cmd.py
r6288806 r5ab3c4e 195 195 optstr = ' '.join(['running', name, 'with options', repr(self.options), '\n']) 196 196 sys.stderr.write(optstr) 197 def flush(self, n_frames, samplerate): 198 pass 197 199 198 200 class process_onset(default_process): … … 266 268 fmt_out += self.time2string(frames_read, samplerate) 267 269 sys.stdout.write(fmt_out) # + '\t') 270 def flush(self, frames_read, samplerate): 271 eof = self.time2string(frames_read, samplerate) 272 sys.stdout.write(eof + '\n') 268 273 269 274 class process_mfcc(default_process): … … 351 356 # exit loop at end of file 352 357 if read < a_source.hop_size: break 353 # special case for notes 354 if args.command == 'notes': 355 eof = processor.time2string(frames_read, a_source.samplerate) 356 sys.stdout.write(eof + '\n') 357 sys.stdout.flush() 358 # flush the processor if needed 359 processor.flush(frames_read, a_source.samplerate) 358 360 if args.verbose > 1: 359 361 fmt_string = "read {:.2f}s"
Note: See TracChangeset
for help on using the changeset viewer.