pyedflib
pyedflib copied to clipboard
pyedflib is a python library to read/write EDF+/BDF+ files based on EDFlib.
Sample code: f = pyedflib.EdfReader( filename ) labels = f.getSignalLabels() SampleRate = f.getSignalHeader(labels.index("Audio Volume"))['sample_rate'] SampleRate is ok if "duration of a data record" in EDF header is 1. SampleRate is...
Hi, since v0.1.23 the `getSampleFrequency` method has changed the value it returns from the actual sample rate (aka the number of samples per second) to the number of samples in...
Hello, I am trying to create an EDF+ file from a Pandas dataframe. I convert the dataframe into a ndarray (df.to_numpy()). When I pass the array into the function I...
In this PR I'm fixing some mistakes that have been made before, and include some clarifications w.r.t to `sampling_frequency` and `sample_rate` **Summary**: * `sample_frequency` is now the main term being...
Hi! Thanks for the lib and making the world better 😊 As I can see, for now pyedflib only works with file paths, so it isn't able to read/write in...
Currently working on AWS with EDF objects. Making a feature request to allow some kind of objects similar to `StringIO` or [`urllib3.HTTPResponse`](https://urllib3.readthedocs.io/en/latest/reference/urllib3.response.html) for input into the `EdfReader` class instead of...
Trying to install `pyedflib` ``` Collecting pyEDFlib Using cached pyEDFlib-0.1.22.tar.gz (1.3 MB) Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... done Requirement...
**"OSError: File S001R03.edf was found but can't be accessed. Make sure it contains no special characters or change your locale to use UTF"** Am using the same file that you...
Would it be possible to have more fields, which can be de-identified. Now it is Subject name and BirthDate. Could you please add Subject code, Admin code, Additional Info, and...
If signals of different lengths are written to an EDF file, the signals read as if they had been clipped from the end to match the length of the shortest...