-
edelblanco
That was exactly my problem. Now I can play it whitout hearing gaps.
Thank you very much, David.
-
edelblanco
No, that's not my my problem. I'll explain it better.
I'm using Pure Data to manage external software, which creates a song progressively, splitted into different wav files. As soon as it creates a new wav file, I load it into an array. The idea is to start playing the song without waiting until it's completely created.
For doing it, I have two arrays: one for loading the latest wav file, and another one for loading the whole song, by copying the content of the first array.
I play the content of the second array, while new parts of the song are being added to it.
-
edelblanco
Thank you. I've put a big array, and now sounds so much better.
However, I still hear a gap when I add a new sound to the array...
-
edelblanco
Hi!
I've done a patch where I'm using the pd object "arraycopy" in order to charge different sounds into an array progressively, while, at the same time, I play its content. Each time I add a new sound, I resize the array.I'm playing the content on the array using the phasor~ object, because it's a wav. When I resize the array, I calculate the phase difference, in order to make the phasor~ continuous.
The issue I have is that, each time the array is resized, sound stops for a moment. Can I avoid it somehow?