Skip to content

Commit

Permalink
BF: default for mic should be transcription=False
Browse files Browse the repository at this point in the history
Most users don't have google API, so most users are getting an error
when they try to run the study with a mic in the default settings
  • Loading branch information
peircej committed Aug 18, 2022
1 parent 5a3c292 commit 2c8a27e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psychopy/experiment/components/microphone/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __init__(self, exp, parentName, name='mic',
channels='auto', device="default",
sampleRate='DVD Audio (48kHz)', maxSize=24000,
outputType='default', speakTimes=True, trimSilent=False,
transcribe=True, transcribeBackend="Google", transcribeLang="en-US", transcribeWords="",
transcribe=False, transcribeBackend="Google", transcribeLang="en-US", transcribeWords="",
#legacy
stereo=None, channel=None):
super(MicrophoneComponent, self).__init__(
Expand Down

0 comments on commit 2c8a27e

Please sign in to comment.