Search found 4 matches

by mkay1999
Fri Mar 12, 2021 3:32 am
Forum: Mind Monitor
Topic: OSC streaming with Python-OSC
Replies: 40
Views: 18494

Re: OSC streaming with Python-OSC

I thought that it was a firewall issue but I allowed python access so I don't think that is an issue as well
by mkay1999
Fri Mar 12, 2021 3:30 am
Forum: Mind Monitor
Topic: OSC streaming with Python-OSC
Replies: 40
Views: 18494

Re: OSC streaming with Python-OSC

Yes 100% sure
by mkay1999
Fri Mar 12, 2021 3:25 am
Forum: Mind Monitor
Topic: OSC streaming with Python-OSC
Replies: 40
Views: 18494

Re: OSC streaming with Python-OSC

rom pythonosc.dispatcher import Dispatcher from pythonosc.osc_server import BlockingOSCUDPServer IP = "192.168.0.45" PORT = 5000 def muse_handler(address, *args): """handle all muse data""" print(f"{address}: {args}") def eeg_handler(address, *args):...
by mkay1999
Fri Mar 12, 2021 3:09 am
Forum: Mind Monitor
Topic: OSC streaming with Python-OSC
Replies: 40
Views: 18494

Re: OSC streaming with Python-OSC

hello I have been trying to stream muse 2 data into python but I keep getting this error: OSError: [WinError 10013] An attempt was made to access a socket in a way forbidden by its access permissions.

Any idea how I can fix it?