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.
Recent Posts
32
FLAC / freebies
Last post by traja47 -
hi all,

please suggest urls where i can obtain *.flac music files requiring no license/copyrights, etc.

thanks

33
General - (fb2k) / Re: Album Information Genre drop down list
Last post by paregistrase -
Thank you for your help.
I wish I could find what you suggested.  Obviously, I don't know what I am doing.  So I will just have the lists because I do like using them.

Is easier than it looks...

The autocomplete fields option is here

X

The "; " is the separator and in every camp you can use + to add diferent tags tothe drop down list.

For example, ARTIST+ALBUM ARTIST; GENRE+STYLE

With this when you edit album artist or artist the drop-down menu will show values contained in both files tags. Same with style and genre.

If you put for example DATE+GENRE+TEST all values of file tags for date and genre will be available when tried to edit the test tag

X

X

But we don't want the dates in that drop-down, then we edit Autocomplete field to GENRE+TEST. Now when you type 1 there is no drop down because there is no genre that start with 1 but the genres will still be there.

X

X

If you don't want any drop down just delete the values of autocomplete and you will never get a drop-down autocomplete list

But if you want to mantain the feauture and only clean the list of unwanted genres you must delete the genres in the file tags, remenber this drop down takes the values from file tags

To do this you go to in the foobar menu Library-Album List

X

In the Album List you can use the filter to search for the wrong values

X

The ? Mark will open the instructions to how to make searches.
35
General - (fb2k) / Re: Album Information Genre drop down list
Last post by Case -
You could test if this approach was easier: open 'Library' -> 'Album List', then at the bottom select 'by Genre' from the View dropdown list.
Now right click on the 'All Music' entry at the top and select 'Properties'.
Double click on the 'Genre' field to start editing the genre of all tracks. The genres are listed alphabetically, tracks without genre will be listed first.
Scroll down the list and when you find a genre you want to remove, select all lines with that genre and just hit Delete key on keyboard. You can select multiple lines either by drawing a rectangle on the mouse or by clicking the first track, hold Shift, then click the last track.
You can of course edit the track genres to what they should be while you are here. But this edit mode is not the fastest for that.

Once cleanup is done, hit OK to return to Properties dialog. Now if you hit OK or Apply the files will get altered with the new genre information and removed entries should no longer haunt in autocomplete list.

Or alternatively, while you are on the Album List, you can pick the genres you want to nuke or edit directly from the Album List tree view. Just right click on the entry, select 'Properties', and you can do to genre what you want.
38
3rd Party Plugins - (fb2k) / Re: Foobar Link Phone app
Last post by jctyler -
Thanks Veloplex. I've been able to use it with the phone remote for about two months, but there's something wrong with the screen constantly refreshing on phone when I'm streaming radio stations. Its constantly refreshing after I save a known radio station URL after pasting it in under 'add location' that I save under an *.fpl playlist. Is there a solution to this? Also some radio stations appear as question marks while others show the name. Is this an issue with the remote or something else?
39
Scientific Discussion / Re: AudioWorklet-based filter bank spectrum analyzer
Last post by TF3RDL -
Updates to this spectrum analyzer project:
  • NEW: Smoothing modes for main spectrum (to complete the averaging domains for FIFO, exponential and infinite average spectrum), which is described below:
    • Linear (peak): Simple linear peak decay (actually exponential when viewed in linear and even nth root amplitude scaling) and toggling between peak and average mode has no effect on it
    • Exponential (linear): Uses the same formula for smoothing the AnalyserNode.getByteFrequencyData() output
    • RMS (squared): Same as before but emphasizes peaks as it is calculated in squared domain
    • Geometric (logarithmic): Exponential smoothing calculated in logarithmic amplitude (dB) scale
  • NEW: Alternate color scheme, which changes the color gradient (from turquoise to orange on fb2k-style color gradient and also the rainbow gradient on "alternate color" mode) and also light mode colors (reducing the contrast a little bit) when not using color gradient
  • FIX: The "main" spectrum sometimes disappears when "Freeze analyzer" is pressed while "anti-flicker" mode is enabled

BTW, since all of time-domain filter bank algorithms I've implemented here can be made parallel rather easily (and so the sample-accurate time smoothing and averaging), so the use of AVX2 instruction set (only in case of re-implementing these in C++ for foobar2000 visualization components and/or even VST plugins) and/or even multithreading (Web Workers can do that but I haven't used that to speed up this web-based analyzer) should allow such analyzers to run at reasonable framerate while having a lot of bands (e.g. 1920 bands)
40
Scientific Discussion / Re: AudioWorklet-based multichannel peakmeter visualization
Last post by TF3RDL -
I have updated this project to complete this interactive mockup of Loudness Peakmeter 2.0.0.0/2.x.x.x foobar2000 component in terms of averaging and peak decay:
  • NEW: Smoothing modes for main peakmeter and correlogram, which is described below:
    • Linear (peak): Simple linear peak decay (actually exponential when viewed in linear and even nth root amplitude scaling) and toggling between peak and average mode has no effect on it
    • Exponential (linear): Exponential averaging
    • RMS (squared): Same as before but emphasizes peaks as it is calculated in squared domain
    • Geometric (logarithmic): Exponential smoothing calculated in logarithmic amplitude (dB) scale
  • NEW: Alternating color mode for peakmeter where Mid/Side part has different color than the main Left/Right one only in case of displaying both L/R and M/S simultaneously, which can look like this:
    X
  • FIX: The main peakmeter and phase correlation/stereo balance bar sometimes disappear when "Freeze analyzer" is enabled while "anti-flicker" mode is enabled