MDF to mf4 #638
MDF to mf4
#638
-
|
Can we convert mdf (after parsing .mf4) back to MF4? For some reasons I need to do this on few files I have. |
Beta Was this translation helpful? Give feedback.
Answered by
danielhrisca
Jan 21, 2022
Replies: 1 comment 1 reply
-
|
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() |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
axaiem
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Something like this?