Skip to content
Discussion options

You must be logged in to vote

Something like this?

from asammdf import MDF

mf4 = MDF('input_file_in_4.00_format.mf4') 
print(mf4.version) # prints 4.00

second_mf4 = mf4.convert('4.11')
print(second_mf4.version) # prints 4.11

second_mf4.save('as_input_but_4.11_format.mf4')

mf4.close()
second_mf4.close()

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@axaiem
Comment options

Answer selected by axaiem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants