----- "IOhannes m zmoelnig" zmoelnig@iem.at a écrit :
anyhow, you don't need to specify the maxsize; if your table is small enough (aka: too small) Pd will silently drop the other samples.
i do: [table bar 44100]
[read -skip 88200 foo.wav bar( | [soundfiler]
and it will store an excerpt of foo.wav between 00:02 and 00:03
interesting, my tables have variable length, and I've just seen that tables get "resize" option
then
[table bar]
[; bar resize 44100(
[read -skip 88200 foo.wav bar( | [soundfiler]
should do it
thanks