How can i capture bytes and turn them to MB? thanks
-
Hello so i wonder how can i turn my bytes to MB for the capture any ideas? thanks
I captured this: 524288000 and i want to turn it to 500 mb for example
524288000 bytes = 500 mb
1,048,576 = 1 mb
So i thought to do my bytes capture(524288000) and turn it to mb with this calculation
524288000 / 1,048,576 = 500mb
<Capture> / 1,048,576(1mb in bytes) = <MbResult>
-
You cant, if youre good with C# you can always try to add your own function to a function block amoung list of already available functions
It'll take your parsed variable as input, convert that and return it
-
In case youre not, You can do it thru a website that help you to do this kind of conversion. Send your parsed data as request and try to parse the response of the website
-
@L4roy ok thanks nice idea
-
OB2 has a block to do this
-
@Ruri oh ok good to know thanks