Reading Brainvision file

Hi,

I seem to have difficulty to read brainvision files by using the function that is provided by MNE. Could anyone give me a hand please ?. I have tried to put all files that are provided by brainvision (different extention file), yet there is no success.

Thanks

can you share the files and a script to replicate?

Alex

Kindly find the files below

https://drive.google.com/drive/folders/1p1F1n49friDkmN39zK510h9pduOJgr9z?usp=sharing

Here is my small and little script

import mne
import numpy as np
import pandas as pd

# %%
raw = mne.io.read_raw_brainvision("EEG-S1.vhdr")

Thanks

The .vhrdr file contains links to non-existing .eeg and .vmrk files. Open EEG-S1.vhdr in a text editor and replace $b in lines 3 and 4 with the actual file names EEG-S1.eeg and EEG-S1.vmrk, respectively.

2 Likes