Issue with Audio and Excel Stimuli Starting with "N"

Hi everyone,

We’re experiencing a peculiar issue with a study we recently built using PsychoPy (v2023.1.3) on Windows 11. It seems that the program fails to recognize specific audio and Excel stimuli. After some troubleshooting, we noticed that this problem only affects files with names starting with the letter “n.”

Has anyone encountered a similar issue or have any insights into what might be causing this? Any help would be greatly appreciated!

Thanks in advance!

Are you using \ instead of/ in your file paths?

\n means new line.

I am using \ for file paths.

Don’t

It is currently set this way: C:\OnsetOffset\SoundFile\blate.wav

Try

SoundFile/blate.wav

I assume your experiment is in C:\OnsetOffset ?

Why aren’t you using a document folder or at least a folder for your experiments?

OnsetOffset is the folder the experiments are in. It is in that folder because IT created a shared folder in C drive which multiple lab members can access.

In that case that should be fine.

So should I rename to C:/OnsetOffset/SoundFile/blate.wav

That should work. I always use relative paths because I tend to write stuff to work online.

It worked, thank you so much.