mediainfo_crap WDX - Help removing some suffixes #51
Replies: 5 comments 1 reply
-
yes, this field was added. the main difference is that in the search window it has a drop-down list and it gives approximate values from the prepared table
if the value does not match any option from the table, it will be printed as is.
here is a modified version with an additional numeric sample rate field |
Beta Was this translation helpful? Give feedback.
-
@j2969719 Thank You |
Beta Was this translation helpful? Give feedback.
-
you can edit the text in quotes in the first column (you can write anything there), and if that's not enough, you can also edit the text in quotes in the if statement in the second block of code (it's best not to lose %.0f there). but in the case of floating values, this is a very questionable change because you can't explicitly set units of measurement for such a field, and the video bitrate can exceed 1mbps. |
Beta Was this translation helpful? Give feedback.
-
Ahh okay, thank you. |
Beta Was this translation helpful? Give feedback.
-
I apologize, I have one more question about I do not think that this can be achieved because the code is designed to round bit rate KBps numbers off, but I noticed that when using the following parameter Thank You You mentioned another solution in your reply above, I did not try this because you mentioned might not be desired. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Not sure if you would be interested but I was wondering if you would be willing to help me with removing some suffixes that show up in columns generated by MediaInfo_crap WDX plugin? I do not think these will make it into the actual plugin bundle version (unless you feel they should) but maybe I can edit the cpp files if the updates are easy enough?
Audio: Bit rate, aprox
First off, I do not remember the original version having this?
Did you add this to your version? I was looking for something like this that rounds bitrate values up/down removing any decminal places.
Whoever added this thank you very much for doing this, I have tested this out a little and works great so far.
The only thing I was wondering about this was how to remove the
KBps
suffix that shows up with each files bitrate valueIt shows up as
KBps
Example:
128 KBps
I looked in the cpp file and maybe has something to do with one of the following lines?
line 214
line 254
Audio: Sampling rate, KHz
Currently the values show up like this
44.1 kHz
I would like to remove the
kHz
and just show the following if possible44.1
In the cpp file I tried editing the following line
{"Audio: Sampling rate, KHz", ft_string, "", "Audio;%SamplingRate/String%",
changing
"Audio;%SamplingRate/String%",
to
"Audio;%SamplingRate%",
but this then shows
44100
Again if possible would like the standard samplerate values to show up
44.1
48 (no decimal if possible)
96 (no decimal if possible)
If only feel like helping with one, I would say the 'KBps' is the most desired out of the two.
Thank you for any help provided
Beta Was this translation helpful? Give feedback.
All reactions