You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently got M1 macbookpro and it reproduced on my machine.
I spent a few days to figure out the problem, but still no solution was found.
I'll drop here what I've found so far...
This only occurs on Atom / Chrome
I run the same code with server mode on (server: 3000) and checked if the problem occurs on browsers.
It worked on Safari and Firefox, but didn't work on Chrome
TCC
macOS has it's privacy protection system (TCC) and it prevents apps to access audio inputs.
The solution introduced here is to edit TCC.db directly.
I tried this to allow Atom to access audio, but it didn't solve the problem 😇
INSERT into access VALUES('kTCCServiceMicrophone',"com.github.atom",0,1,1,1,NULL,NULL,NULL,'UNUSED',NULL,0,1541440109);
INSERT into access VALUES('kTCCServiceCamera',"com.github.atom",0,1,1,1,NULL,NULL,NULL,'UNUSED',NULL,0,1541440109);
INSERT into access VALUES('kTCCServiceMicrophone',"com.github.atom.helper",0,1,1,1,NULL,NULL,NULL,'UNUSED',NULL,0,1541440109);
INSERT into access VALUES('kTCCServiceCamera',"com.github.atom.helper",0,1,1,1,NULL,NULL,NULL,'UNUSED',NULL,0,1541440109);
This code works on my old mac but gives a black screen on a new one, that uses apple's m1 cpu.
I've added Veda to my Security & Privacy → Accessability list, but I can't add it to the Microphone list, because there are no
+
button:I think Veda should've requested access at some point but it didn't.
Atom 1.58.0
The text was updated successfully, but these errors were encountered: