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
3
3rd Party Plugins - (fb2k) / Re: foo_convolve - Impulse response convolver
Last post by sveakul -
I assume you mean foo_convolve not "foo_convolver."  What do you mean by "won't install correctly?"  What do you do, and then what happens?

It is 32-bit only so requires 32-bit Foobar;  two other choices that can use 32 or 64 bit are foo_dsp_stereoconv and foo_dsp_convolver.

BTW, I just installed foo_convolve 0.3.3 on Foobar 1.6.18 and everything went fine:

https://www.foobar2000.org/getcomponent/efd071729d99e8c14cae0368b8a8ecaf/Convolver.fb2k-component
4
Vinyl / Re: What's the ideal way to fix the pitch of a vinyl recording?
Last post by fooball -
I still say resample in Audacity (or whatever audio editor you like), it will be simpler in the long run.  Keeping to a standard sample rate will be compatible with more players, and the resampling will not be audible.  There are far greater distortions in the extraction of audio from vinyl.

What you might not realise is that unless you take special measures, the player will resample to its default sample rate anyway, that's how multiple audio sources can be mixed together to get (say) a system alert with a music source and/or a video track simultaneously.  Resampling is all over the place whether you like it or not.
5
3rd Party Plugins - (fb2k) / Re: foo_convolve - Impulse response convolver
Last post by orphictrench -
Hey guys/gals!

I became a great fan of foo_convolver over the years and I go to great lengths to create the best possible filters with Acourate software. I don't see myself using another librarian, but recently I changed computers and the convolver won't install correctly.

I tried downgrading to 32-bit foobar2000 and it doesn't work either. Could anyone help? What's going on? What am I doing wrong?

I simply cannot live without this extra component.
6
AAC - Tech / Re: AAC frame lengths
Last post by includemeout -
Dun, dun, dun!

And that based on which psychoacoustic model??

Sorry, I couldn't understand you, can you explain a little more @includemeout ?
What I meant is that, as you know, MDCT/sub band-based lossy codecs are wild beasts built from the ground up around specific psychoacoustic models.

In fact, this community abounds with cases where even tweaking their settings excessively has been proven to wreak havoc on audio quality and end up causing more problems than the initial ones they were meant to solve - and I'm as guilty as the next guy for having tried a couple dozens of them - ugh! including -r3mix for MP3 and -mnt for customizing MPC's noise shaping back in 2001/02 and such and such.

So, I'm not trying to be disrespectful and doubt your programming skills and what-not, but what makes you think such changes won't be, for starters, an uphill task and that they will end up improving a codec as established as AAC?

7
3rd Party Plugins - (fb2k) / Re: Playlist-Manager-SMP
Last post by regor -
It's a SMP bug with specific angles on rounded corners, which I simply handle as popups. It's funny I have had them many times and no one noticed. Just ignore it or just change the panel size if that happens. I will probably disable it for regular users.
9
3rd Party Plugins - (fb2k) / Re: Biography Discussion
Last post by marc2k3 -
Bug in helpers.js: success / sucess

Code: [Select]
	save(fn, text, bom) {
try {
const success = utils.WriteTextFile(fn, text, bom);
if (!sucess && fn.length >= 256) {
fb.ShowPopupMessage('Script is trying to save a file in a path containing more than 256 chars which leads to problems on Windows systems.\n\nPath:\n' + fn + '\n\nTo avoid this problem, install your foobar portable installation at another path (with less nesting) or change the the cache folders at \'biography.cfg\'.')
}
} catch (e) {
this.trace('error saving: ' + fn);
}
}