Replies: 3 comments 8 replies
-
What have you tried already? I experimented with this system in the past and from what I remember you need to have a local installation of Jatos which provides the jatos scripts. You add all the jspsych scripts yourself and when ready you export everything and import on a remote server. |
Beta Was this translation helpful? Give feedback.
3 replies
-
***@***.***
Op di 14 mrt. 2023 22:26 schreef 76Darya ***@***.***>:
… yes, would you please give me your email address?
—
Reply to this email directly, view it on GitHub
<#2965 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABXHGVKPXWEYPRQNFFHS6ZLW4DO7ZANCNFSM6AAAAAAVKMJBHA>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
4 replies
-
Hi.. I tried to send you an Email but it was unsuccessful... Do you have
any accounts on skype? if it is possible, I can call you there... I
couldn't use the codes and there is no enough time for me
…On Fri, Mar 17, 2023 at 1:30 PM Christophe Bossens ***@***.***> wrote:
What I do in these cases is first focus on the trial that is giving you
trouble :). Just to be clear, from what I understood from your explanation
so far you are going to present a word on the screen, and the participant
needs to read that word as fast as possible?
The code below allows you to do that (never mind some of the parameters
that you require in addition, I think for now it is important to check if
you can get the audio response). Can you see if this works for you? I don't
have experience with using Jatos, but if I use Visual Studio Code with the
live server plugin I am able to see the audio response. I have also tested
this code on cognition.run where I can also get the audio response.
<script>
const jsPsych = initJsPsych({
case_sensitive_responses: true, // to ignore the letter case of a keyboard response, set this parameter to false or remove it
on_finish: function() {
jsPsych.data.displayData();
}
});
var initialize_microphone_trial = {
type: jsPsychInitializeMicrophone
};
let start_trial ={
type: jsPsychHtmlKeyboardResponse,
stimulus: 'Press a key to start the audio recording trial',
}
let audio_trial = {
type: jsPsychHtmlAudioResponse,
stimulus: `
<p style="font-size:48px; color:red;">GREEN</p>
<p>Speak the color of the ink.</p>`,
recording_duration: 3500
}
jsPsych.run([initialize_microphone_trial, start_trial, audio_trial]);
</script>
—
Reply to this email directly, view it on GitHub
<#2965 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A6FRHOSL73QT2DPLPBRHAY3W4QY23ANCNFSM6AAAAAAVKMJBHA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi there، I have problem with my project task، I'm going to creat a word naming task with jspsych and jatos, but I dont know how to find its plugins and scripts
Beta Was this translation helpful? Give feedback.
All reactions