pyxdf
pyxdf copied to clipboard
Python package for working with XDF files
Our Azure Pipeline workflows have been dysfunctional for some time now. This means that neither tests nor publishing on PyPI works. We should replace this with suitable GitHub Actions and...
Fixes a test failure when the [Fedora Linux package](https://src.fedoraproject.org/rpms/python-pyxdf) is built and tested on `s390x`, which is Fedora’s sole big-endian primary architecture: ``` =================================== FAILURES =================================== __________________ test_load_file[example-files/minimal.xdf] ___________________ file...
As requested, i moved the pull request to the new repo structure according to https://github.com/sccn/xdf/pull/28 As mentioned there: >Allows to resample (using interpolation for numeric values and shifting for strings)...
I've started a rough prototype for writer support. Currently, it looks like this: ``` with pyxdf.writer.Writer('/tmp/foo.xdf.gz') as w: w.add_stream(streamid=1, header='XYZ…') w.add_stream_data(streamid=1, data=np.array([[1,2],[2,3],[3,4]], ts=np.array([5.1, np.nan, 5.3])) w.add_stream_offsets(streamid=1, offsets=np.array([[1.0, 5.0], [1.3, 5.3]]))...
See here: https://github.com/xdf-modules/xdf-Matlab/issues/16
When looking through the code of _clock_sync (https://github.com/xdf-modules/pyxdf/blob/main/pyxdf/pyxdf.py#L538) which is used at import time to synchronise clocks between streams I think I found a bug. In the synchronisation method there...
Hello! I need to make a progress bar to display the xdf file loading process. I am using the pyqt5 GUI. I have now added my function (signal) to the...
Upon trying to load the xdf file using pyxdf, I get this error however, the file is good and works in matlab. Please advise.
I recently worked with an XDF file containing two streams, an EEG stream and a marker stream. I noticed that when using the nominal sampling rate (e.g. 1000 Hz), the...
Hi guys, I'm trying to read .xdf files with the pyxdf.load_xdf() function but I have this error for some of my files : **Error reading chunk length Traceback (most recent...