bids-standard / pyedf

Python package to read from and write EEG data to European Data Format files.
BSD 3-Clause "New" or "Revised" License
15 stars 9 forks source link

Converting from MNE? #6

Closed bdyetton closed 5 years ago

bdyetton commented 5 years ago

Hi @robertoostenveld, Just wondering if you have any custom code snippets for saving an mne.io.RawArray to edf using this lib? Thanks!

palday commented 5 years ago

Not directly, but you can use the Raw.get_data() method to extract the array and then use this to save it.

bdyetton commented 5 years ago

Thanks. I did try this, but found it too slow, so i moved to pyedflib instead.