hallo,
i have a problem with the size of the pd-array. i use it to preload wave-files, which will be played by tabplay~. i need to preload the files because of the latency of readsf~. the array is limited to 4000000 samples. is there a possibility to extend this size?
thank you,best regards
christoph
Hi,
yes, afaik you load a soundfile using the following message (substitute $1 with path/to/filename.wav:
[read -resize -maxsize 5e+06 $1 'tablename'<
lg, Peter
Christoph Sladeczek wrote:
hallo,
i have a problem with the size of the pd-array. i use it to preload wave-files, which will be played by tabplay~. i need to preload the files because of the latency of readsf~. the array is limited to 4000000 samples. is there a possibility to extend this size?
thank you,best regards
christoph
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
I read:
which will be played by tabplay~. i need to preload the files because of the latency of readsf~. the array is limited to 4000000 samples. is there a possibility to extend this size?
this is hardcoded, but you can change #define DEFMAXSIZE 4000000 in d_soundfile.c and recompile.
HTH
x