wieske
About
- Username
- wieske
- Joined
- Visits
- 41
- Last Active
- Roles
- Member
Comments
-
Thanks people! I'll forward these questions onto the student and let you know asap if we find a solution. Nice to connect to your both :). As always, Thanks for your great work.
-
Hi Sebastiaan, thanks for your help. From what I gather, the error happens only when you run the experiment. The student finished all of the instructions of the beginner tutorial, and then when they hit 'run', the message "The 'git' command re…
-
Sorry I don't have an answer, but today I got the exact same query from a student in my class. She is on a macbook air with OS Catalina 10.15.7. Any help/ suggestions would be much appreciated. Thank you!
-
Hi Jacopo! We solved this issue. Turns out the variables were all defined in practice_loop and not in block_loop. Because the block_loop was empty, the trial_sequence was essentially the block_sequence and feedback was presented every time. The is…
-
Not sure I completely understand, but if you want sounds to randomly come from the right or left, add sound_position as a variable in the loop, eg. sound_position (left, right) Then in the synth function, assign this variable to pan: set pan "…
-
Not sure if this is what you are looking for, but you can define x_pos and y_pos as variables in a loop. eg: quadrant1 2 3 4location_x -250 -250 250 250location _Y -250 250 250 -250 then use the [location_x] and [location_y] to present the pictu…
-
Partly. Thanks! I understand now the idea of the server and the client (should not try to put the server in client... ). Though, when I run it via the terminal, the problem is that OpenSesame does not connect to the Mantra server. The terminal rep…
-
Just one other thing... When trying to make this mantrascript.py work directly in OpenSesame, the mouse is not visible in the window where you can define the object and Open Sesame crashes after Enter. If I run the mantrascript via the terminal, I …
-
Sorry about the icon query, i hadn't noticed your clear warning on the install instructions yet... I can't remember the error about Expyriment. Now I think of it, it could also have something to do with the update I did for the videocard. I took tw…
-
ps. that other error was because I thought i may have found a solution with another dependency I downloaded- I don't really know what I was doing- but that wasn't actually the case. Upon deleting that update, the error disappeared too...
-
Works! Great! Very cool. Thanks for your help Sebastiaan!
-
turns out that the valgrind debugger does not slow it down enough for me here. it crashes the same... also get one other error that I am not sure I had before... see below. I am having troubles installing 10.10 and finding the right dependencies, b…
-
Thanks for the information and advice! I'll look into the options today and see what will work best. By the way, congratulations! Hope you had a good day last Thursday! Ciao ciao
-
Fantastic! Thanks for the reply! I have to admit I was hoping you would have some pointers after having spent an hour 'playing' with this issue. Does increase my appreciation for the pan function in synth- it is very nice and works really well for …
-
Thanks! It works using the code below to index the sounds cards. Now I am figuring out how to play to a specific speaker... import sys import pyaudio## index the devices in the systemp = pyaudio.PyAudio() count = p.get_device_count() devices = …