Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: How can i capture Bitrate_Norminal entry? (Read 2878 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

How can i capture Bitrate_Norminal entry?

actually i don't know about script languages.
so it could be already there and i just don't know.
what i want is change bitrate display scheme on system tray display.
like this..

1) check codec, if it's CBR go to 2), if it's VBR go to 3)
2) display bitrate ( %bitrate% )
3) display bitrate_norminal ( not %bitrate_dynamic% )

is it possible?
sorry i'm noob

How can i capture Bitrate_Norminal entry?

Reply #1
Seems that dynamic bitrate display is not possible for the system tray.  Only the average bitrate will be displayed.

For all other title formatting needs (playlist,etc.) use:

Code: [Select]
$if2(%__bitrate_dynamic%,%__bitrate%)



EDIT:

Oops sorry, just saw that I misread your post.  You wanted the nominal and not the dynamic bitrate displayed.  What exactly do you mean by this?  Simply the bitrate wich the file has at that very given moment?

However I do think that the only options to display bitrate are either %__bitrate_dynamic% gicing you the dynamic bitrate and %__bitrate% returning the average bitrate.

How can i capture Bitrate_Norminal entry?

Reply #2
as you know..
every VBR files have bitrate_nominal entry.(show fileinfo)
i want to capture them, but i think %__bitrate_nominal% doesn't work

How can i capture Bitrate_Norminal entry?

Reply #3
As far as I can tell only vorbis files have the bitrate nominal entry.  MP3, MPC don't.

Anyway,

Code: [Select]
$if2(%__bitrate_nominal%,%__bitrate%)


should do the trick.

How can i capture Bitrate_Norminal entry?

Reply #4
Thank you Picmixer
it seems working with Ogg Vorbis.
i really didn't know that MP3 VBR doesn't have bitrate_nominal entry
i've tested with that strings and MP3 VBR doesn't show properly.
well but it helps me a lot Thanks. (gotta delete MP3 VBR Files  )

 

How can i capture Bitrate_Norminal entry?

Reply #5
Try out $if3(%__bitrate_nominal%,%__bitrate_dynamic%,%__bitrate%).