boris
About
- Username
- boris
- Joined
- Visits
- 59
- Last Active
- Roles
- Member
Comments
-
Hi Sebastiaan, Thank you very much ! Best
-
Hi Eduard, Thank you for your answer. (Quote) Would you have any idea how I could do that ? (Quote) 30 items is not even a single block so that will be difficult. I was thinking of recording 4 big files instead of multiple small ones but I did no…
-
Hi, Thanks for your answer. The problem with the text input form is that I need to disable the carriage return because I do not want the subject to go to the next screen when he type if. Then if i do that the carriage return has not a normal beha…
-
Hi Eduard, Thanks. After being unsuceesful in installing pymedia, I tried again to use soundrecorder with OS 2.9.4 and now it works. Best,
-
Finally I tried the plugin in OpenSesame 3.1.9 and OpenSesame 2.9.7 and it does not seem to work. I have the following error message: File "C:\Program Files (x86)\OpenSesame297\plugins\sound_start_recording\Soundrecorder.py", line 37, in …
-
Sorry but finally the plugin seems to work. It's just that I unzipped the main folder in opensesame_plugins and I needed to unzip the two small folders instead. (sound_start_recording and sound_stop_recording). Best,
-
Hi Sebastiaan, So I guess this will be implemented in the next version. Is there anyway to disable it in 3.1.17 ? Best regards
-
Thank you Roelof but my problem is not for the log file but inside the OS interface... (Image) This was not my original columns order but OS reordered them... Here was my original order Target Prime TypeCV TypePrime TypeTarget1 TypeTarget2 C…
-
Thank you ! That's nice ! And do you knwo if it would be possible to change the word "Ready" at the beginning of the experiment ? Best
-
Hi Florian, Thank you for your answer. Sometimes we can need to run two or more scripts in one sessionn so this could be interesting... (for instance we can work on phobia and the appearance of the word "Python" could be problematic). S…
-
Yes "é" is ok. The problem is only for combinations of keystrokes...
-
Hi Josh, Yes because I want to collect time for every letter typed. Cheers
-
Finally I used the old variable access solution and it's working: path = exp.experiment_path + "/results." + str(self.get('subject_nr')) + ".txt" But I don't understand why the new way (str(var.subject_nr)) is not working... Be…
-
Hi Sebastiaan, Yes i can now see in System Information that i have datmatrix 0.3.7. But that does not improve performances... Cheers, Boris
-
Thanks, This would be for 50 ms prime durations. As CRT monitors are getting rare and masked priming being a popular paradigm, I think that we will see more and more papers using masked priming with LCD ones which is a problem...
-
Hi Boo, If anyone has any suggestions on how to reduce that 6% variation further it is most welcome but I think we'll be okay as is. I guess that you: 1) killed the maximum of processes running in the same time as your experiment 2) disabled you…
-
Hi, Imagine that your image are in the "images" folder of the current experiment. Then I guess that path = exp.get_file("\\images\\my_image.png") should work...
-
Thanks for your answer. I tried to replicate the problem on my home computer but everything was running well (backend psycho, font "Courier New"). I'll try again on Monday... I also tried to run my experiment with xpyriment but OS crashes…
-
I tried with OS 0.27.1. It's not crashing but the display has problems... (the string displayed is not cleaned but noisy)
-
Hi Sebastiaan, (Quote) Great ! I made some additions mostly based on your different posts... Again, thank you for your fabulous tool (OS is very easy to learn andu and powerful when we need it): I've already converted 1 colleague of mine to use it…
-
I forgot: given what you said, it would be nice to have also the real resolution and the Full Screen or window mode logged in the subject file (now it's the resolution settled in OS which is not the real one in "Full screen mode")...
-
Hi Sebastiaan, (Quote) Perhaps that it would be nice if this could appear in a Resolution & Refresh Rate subpart of the Timing Section. Perhaps, that it could be also nice to have a warning concerning "Full screen mode" or something …
-
Sorry for my French but I'm a lazy English user... (always cost more energy to write/say something in English ) :P
-
Hi, Another nice feature would be to have a "voice key detection" input object (for instance as an option in the audio recorder object). Another interesting thing would be to be able to edit items in the sketchpad with the mouse (draggin…
-
Finally I found the solution ! This code should work whatever the size of your stimulus list and whatever the max number of consecutive trials you want (you can adapt the script easily) Put this inline in the beginning of the script: global stimu…
-
Hi Edwin, I think that I found a partial solution to the problem. This new script is doing well to randomize my table "stimuli". (I tested it in a Python interpreter and it was working) So at the end in my result file, I have no "1&…
-
Do I understand correctly that all of the single-word repeats have 'run out' for all words? Yes Wouldn't that mean that all of the trials are already run? No because there are still some pseudowords to display...I'm not using the 20 items but …
-
Hi, Unfortunately, I was too enthusiastic. The script is often crashing when running the experiment at the end of the 240 items (for instance after 235). The problem is if, arriving on item 235, all the words have already been selected for example…
-
Thank you !
-
Hi Edwin, I think that another solution than the dummy column for the "\n" is to do a rstrip for line in range(0, len(stimuli)): stimuli[line] = stimuli[line].rstrip() stimuli[line] = stimuli[line].split(' ') # split based on…