New version with XDF file support

I just did a bit of digging.
May I ask how were the timestamps implemented ?
Were they just taken from the timestamps list (in python - the time_stamps list) ?

data, header = pyxdf.load_xdf(filename='/Users/windy/wiimote_pylsl_muse_test.xdf',verbose=False)
data[0]["time_stamps"]

It seems that to get the time synched between different streams implementation needs to consider the
time offset (i.e in python - >

data, header = pyxdf.load_xdf(filename='/Users/windy/wiimote_pylsl_muse_test.xdf',verbose=False)

data[0]['footer']["info"]["clock_offsets"][0]["offset"][0]["time"][0]
data[0]['footer']["info"]["clock_offsets"][0]["offset"][0]["value"][0]

Peter