What is the path to call for when I have a project with sound files within a subfolder?
./subfolder/file.wav does not work, I guess because libpd is in a different location (?)
Pd subfolders
- Edited
Try using [declare -path subfolder]
Then [open soundfile.wav(
Or just [open subfolder/soundfile.wav(
It should , can you show your patch and directory structure?
It's just a subfolder /wav-files with sound files in it..which I try to load with [soundfiler], with the command [read -resize wave-files/1.wav etc
What I get:
error: soundfiler_read: wav-files/0.wav: No such file or directory
verbose(4): ... you might be able to track this down from the Find menu.
error: soundfiler_read: wav-files/1.wav: No such file or directory
error: soundfiler_read: wav-files/2.wav: No such file or directory
error: soundfiler_read: wav-files/3.wav: No such file or directory
error: soundfiler_read: wav-files/4.wav: No such file or directory
error: soundfiler_read: wav-files/5.wav: No such file or directory
error: soundfiler_read: wav-files/6.wav: No such file or directory
error: soundfiler_read: wav-files/7.wav: No such file or directory
error: soundfiler_read: wav-files/8.wav: No such file or directory
error: soundfiler_read: wav-files/9.wav: No such file or directory
error: soundfiler_read: wav-files/10.wav: No such file or directory
error: soundfiler_read: wav-files/11.wav: No such file or directory
- Edited
it's case sensitive, so you need
[read -resize wav-files/1.WAV]
And this is the soundfile loading subpatch, called from a [clone] abstraction.