Error reading an HDF5 in python (MacOS)

Error reading an HDF5 in python (MacOS)

When trying to read an HDF5 (converted from a RAW recording) using the h5py library I have the following error:
  1. OSError: Can't read data (required filter 'HDF ECF filter; see http://www.hdfgroup.org/services/contributions.html' is not registered)
Here is the snippet producing the error:
import h5py
import hdf5plugin
f = h5py.File(p_data + files[1], 'r')
events = f['CD']['events']
print(events[0]) # line causing the error

Any suggestion is appreciated ;-)