summaryrefslogtreecommitdiff
path: root/examples/timescale.py
blob: 9ba03eff29413e72f62c6a07ddc0f132683ad190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import sys
import numpy as np
import scipy.io.wavfile as wav
import simpl

usage = 'Usage: python {0} '.format(__file__) + \
    '<input wav file> <time scale factor> <output wav file>'

if len(sys.argv) != 4:
    print(usage)
    sys.exit(1)

audio, sampling_rate = simpl.read_wav(sys.argv[1])
time_scale_factor = float(sys.argv[2])
output_file = sys.argv[3]

pd = simpl.LorisPeakDetection()
peaks = pd.find_peaks(audio)
pt = simpl.SMSPartialTracking()
partials = pt.find_partials(peaks)

synth = simpl.SndObjSynthesis()
audio_out = np.array([])
step_size = 1.0 / time_scale_factor
current_frame = 0

while current_frame < len(partials):
    i = int(current_frame)
    frame = synth.synth_frame(partials[i])
    audio_out = np.hstack((audio_out, frame))
    current_frame += step_size

audio_out = np.asarray(audio_out * 32768, np.int16)
wav.write(output_file, sampling_rate, audio_out)