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: foo_uie_trackinfo (Read 818918 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

foo_uie_trackinfo

Reply #875
Can someone tell me what the syntax (right word? I mean the %artist% things) is for the following information (C&P from File Info Plugin) please?
Info:

encoding = lossy
channels = 2
extrainfo = VBR
mp3_stereo_mode = joint stereo
tagtype = id3v2|id3v1

You have the right phrases, you just need a double underscore "__" in front of the phrase.  So for encoding, it would be %__encoding%.

foo_uie_trackinfo

Reply #876
Thanks man.

 

foo_uie_trackinfo

Reply #877
An ability to show samplerate in KHz instead of Hz would be nice, in some distant future.

Since I didn't find any functions straight from http://wiki.hydrogenaudio.org/index.php?ti...ormat_Reference , I made this:

Code: [Select]
$div(%samplerate%,1000)','$div($mod(%samplerate%,1000),100)KHz


Because of the "I print only integrals" feature, that thing there calculates first the two numbers, and adds decimal (in case of 44,1KHz) after that

Now please tell me, that there is already a feature for this...

foo_uie_trackinfo

Reply #878
An ability to show samplerate in KHz instead of Hz would be nice, in some distant future.

Since I didn't find any functions straight from http://wiki.hydrogenaudio.org/index.php?ti...ormat_Reference , I made this:

Code: [Select]
$div(%samplerate%,1000)','$div($mod(%samplerate%,1000),100)KHz


Because of the "I print only integrals" feature, that thing there calculates first the two numbers, and adds decimal (in case of 44,1KHz) after that

Now please tell me, that there is already a feature for this...

This is the one that I use:
Code: [Select]
$if(%__samplerate%,$div(%__samplerate%,1000).$substr(%__samplerate%,3,3) KHz)


Still in 0.8.3 language but works for 0.9.2.

foo_uie_trackinfo

Reply #879
Heh, I forgot that it will print the ,0 with, for example, 96000Hz or 48000Hz signal too. I didn't want it, so I modified the script a bit further  Now it prints 96KHz or 48KHz etc. if the decimal afterwards would be 0.

Code: [Select]
$div(%samplerate%,1000)$ifequal($div($mod(%samplerate%,1000),100),0,,','$div($mod(%samplerate%,1000),100))KHz


At least I learn some basics of tagz when toying with this stuff.

foo_uie_trackinfo

Reply #880
You may want to change the ',' to just . because 44,1Khz doesnt make much sense but 44.1Khz does.

Code: [Select]
$div(%samplerate%,1000)$ifequal($div($mod(%samplerate%,1000),100),0,,.$div($mod(%samplerate%,1000),100))KHz

foo_uie_trackinfo

Reply #881
You may want to change the ',' to just . because 44,1Khz doesnt make much sense but 44.1Khz does.

That would depend on where Ihmemies is located.  Some areas of the world reverse the use of "." and "," where it comes to numbers.

foo_uie_trackinfo

Reply #882
is there a way to set the backgroundcolour via code?


foo_uie_trackinfo

Reply #884
ok, another short question...
I want to display the actual Playlist-Tab-Name, but %playlist_name% doesn't work.
any solution?

foo_uie_trackinfo

Reply #885
dont think this is actually possible. but never mind.

foo_uie_trackinfo

Reply #886
there is a little bug with "follow cursor mode" and "playlist-tabs".
When changing tabs, the trackinfo panel isn't updated automatically (like album-art-panel).
foobar 0.9.2
columns ui 0.1.3 beta 1v5
trackinfo panel 0.8 for fb0.9

can anyone confirme?

foo_uie_trackinfo

Reply #887
there is a little bug with "follow cursor mode" and "playlist-tabs".
When changing tabs, the trackinfo panel isn't updated automatically (like album-art-panel).
foobar 0.9.2
columns ui 0.1.3 beta 1v5
trackinfo panel 0.8 for fb0.9

can anyone confirme?

Not sure if thats a bug or not, but I can confirm.  Funny thing I was just wondering about it myself.  Won't update after switching playlists until you change or select another track.

foo_uie_trackinfo

Reply #888
I have one little question about trackinfo panel.

In track info panel, I want to see the infomation about the "Next song" in the playlist.

I tried to do this with %playlist_number% or %list_index%, etc.

But, it seems that it doesn't not work.

Any comments will be apprepreciated.

foo_uie_trackinfo

Reply #889
With the comment tag displayed and word wrap on the cpu usage skyrockets, lagging foobar.

I read setting scroll steps to 1 will alleviate the problem but I found that only helps a little. It still lags foobars spectrum analyzer cyclically about every 4 seconds.

foo_uie_trackinfo

Reply #890
To further press down on CPU time, make sure steps to 1 and scroll end delay to 50000.

If your trackinfo does not need to be updated regularly (i.e. no progress bar), you can also turn off the "Update every second" checkbox.

foo_uie_trackinfo

Reply #891
is there any way i can display all the information in caps?



foo_uie_trackinfo

Reply #894
Track Info Panel seems to forget my configuration, it displays the one I
created but when i want to configure or edit it via Columns_UI/Layout
everything (Fontsize, formating string..) is reseted...



foo_uie_trackinfo

Reply #897
Is there a way to tell the track info panel to get certain tags from the first item of the (active) playlist exclusively? What I want is an album part in the panel that updates as soon as tracks were sent to the playlist, for I want to see my album info before clicking on any particular track.

foo_uie_trackinfo

Reply #898
Is the way to change "Double Click" on TrackInfo function to change it's showing info ? I want to do this : TrackInfo shows "$num(%tracknumber%,2). %artist% - %title%" but after double click it changes to "%path%" ?

foo_uie_trackinfo

Reply #899
when oh when will track info have a save config option so we can save / load multiple configs like in columns ui

it simply makes sense and if a new version whipes our settings we simply have to reload the config files..