Need help with files with "mlp" extension

  • Thread starter Thread starter Virous
  • Start date Start date
  • Tags Tags
    Extension files
Click For Summary

Discussion Overview

The discussion revolves around the challenges of opening and interpreting files with the "mlp" extension, which are believed to contain pH vs Time graph data from a lab data logger. Participants explore potential software solutions, file formats, and methods for extracting data from these files.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant asserts that the "mlp" files are not audio files, as they recorded the data themselves and seeks software from others with the same data logger.
  • Another participant questions the file type, suggesting that "mlp" files are typically associated with audio formats, providing links for reference.
  • Some participants propose contacting the manufacturer for support, noting potential delays in response.
  • A suggestion is made to examine the files using a binary editor to identify data structures, with one participant reporting visibility of a table header but no numerical data.
  • Another participant discusses the importance of byte order (little-endian vs big-endian) in interpreting the binary data, raising uncertainty about how the data points are recorded.
  • One participant shares findings from a hex editor, indicating the presence of an identifying header and the need to analyze hex values further.
  • There is a mention of the possibility that the data could be stored in various formats, complicating the extraction process.

Areas of Agreement / Disagreement

Participants express differing views on the nature of the "mlp" files, with some insisting they are not audio files while others reference common associations with that format. The discussion remains unresolved regarding the best approach to access and interpret the data.

Contextual Notes

Participants note limitations in their understanding of the file structure and the potential for missing assumptions about the data format and encoding. There are unresolved questions regarding the specific data points contained within the files.

Virous
Messages
68
Reaction score
0
Good Evening!

I have a few files with "mlp" extension, which are pH vs Time graphs from a lab data logger. The original software is unavailable to me, but in the Internet I can`t find anything to open it.

Please, help!
 
Computer science news on Phys.org
No, these are not sound files. I`m absolutely sure, since I recorded all these files myself. Audio format is the only thing I get from Google as well.

I hope to find someone on this forum who possesses the same kind of data logger and will share his software with me. On the official website of the manufacturer I found the software (MultiLab), but only the latest version, which uses a different format (mlb instead of mlp).
 
Yeah, seems it`s the only way. They don`t tend to be fast when it comes to their support service. Especially on weekends :(
 
Have you looked at the files with an editor or binary dump (ala vim -b or the od command in linux)?

http://usevim.com/2012/06/20/vim-binary-files/

You might be able to construct a program in your favorite language or a script in Python to read it.
 
Yes, I tried to open them with a text editor. I can clearly see the header of the table (e.g. "Temperature"), but I can`t find any numbers.

http://www.filedropper.com/5_11 - this is one of the files.
 
Last edited by a moderator:
I can see two long strings with lots of groups of 3 symbols separated by 5 null-bytes. I presume, these are the values I need. 3 bytes should be enough to store a decimal number with 4 s.f., I guess. But I see no relationship between these groups and actual numbers :(
 
you have to worry about byte order too, known as little-endian vs big-endian format. If the mlp file was recorded on an Intel machine then the binary numbers are little-endian format. If it was a on PowerPC chip as an example, it would be big-endian format.

http://en.wikipedia.org/wiki/Endianness#Little-endian

Its hard to say whether they recorded that data as data points like ph value, temp value... or all ph values (an array) and all temp values
 
  • #10
Viewed on a hex[adecimal] editor http://www.filedropper.com/5_11 begins ...
Code:
 DBLabFile.v.1.4 ...Exp..3...  ..Temperature.I/  O-1..C..
if that's any help.

http://www.fileformat.info/tool/hexdump.htm
5mpl online analysis = dunno.gif
 
Last edited by a moderator:
  • #11
This dump is only partially helpful. The first few bytes are an identifying header and seeing the dots means you really need to look at the hex values for those bytes as they may be filler, or binary data like a floating or number...
 

Similar threads

  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 6 ·
Replies
6
Views
1K
  • · Replies 14 ·
Replies
14
Views
7K
  • · Replies 14 ·
Replies
14
Views
5K
  • · Replies 2 ·
Replies
2
Views
24K
  • · Replies 30 ·
2
Replies
30
Views
4K
  • · Replies 6 ·
Replies
6
Views
2K
Replies
5
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K