static L markerIntRangesForWAV(File f, BWImage freqImage) { ret markerIntRangesForWAV(f); } static L markerIntRangesForWAV(File f) { Clip clip = spectro_clipFromFile(f); L intMarkers = sorted(allToInt(audioFileFloatMarkers(f))); // odd number of markers => clip to end if (oddLength(intMarkers)) intMarkers.add(clip.getFrameCount()); ret intsToIntRanges(intMarkers); }