- Timestamp:
- Oct 29, 2018, 3:26:54 PM (6 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
- Children:
- c9c012e
- Parents:
- f0ce8aa3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/lib/aubio/slicing.py
rf0ce8aa3 ra88594d 19 19 20 20 if timestamps_end is not None: 21 if len(timestamps_end) != len(timestamps): 21 if len(timestamps_end) == len(timestamps) - 1: 22 timestamps_end = timestamps_end + [_max_timestamp] 23 elif len(timestamps_end) != len(timestamps): 22 24 raise ValueError("len(timestamps_end) != len(timestamps)") 23 25 else:
Note: See TracChangeset
for help on using the changeset viewer.