Ignore:
Timestamp:
Apr 18, 2016, 11:21:31 PM (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:
4de5f35
Parents:
5c1200a
Message:

python/lib/aubio/slicing.py: make sure we get a list of regions (python3, see #33)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/lib/aubio/slicing.py

    r5c1200a r0e59ae0  
    2323        timestamps_end = [t - 1 for t in timestamps[1:] ] + [ max_timestamp ]
    2424
    25     regions = zip(timestamps, timestamps_end)
     25    regions = list(zip(timestamps, timestamps_end))
    2626    #print regions
    2727
Note: See TracChangeset for help on using the changeset viewer.