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: Foobar 2000 Feature Request (Read 4785 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Foobar 2000 Feature Request

Hi developers, Would you consider adding a feature that allows to insert few seconds of silence between tracks, This helps when making analog or digital mixtapes.
 
While I'm at it I have a technical question, Does the presence of volume control in the application makes it non bit perfect?

Re: Foobar 2000 Feature Request

Reply #1
You can add silence with a component.

Having a volume control doesn't make anything lose bit-perfectness. But bit-perfect playback requires of course having volume at max, not using ReplayGain or other DSPs, and using WASAPI or ASIO outputs.

Re: Foobar 2000 Feature Request

Reply #2
You can add silence with a component.

Having a volume control doesn't make anything lose bit-perfectness. But bit-perfect playback requires of course having volume at max, not using ReplayGain or other DSPs, and using WASAPI or ASIO outputs.

For the life of me I couldn't figure out how to use the silence feature after installing it into foobar2000.

Re: Foobar 2000 Feature Request

Reply #3
There is also a silence generator built-in, but it only generates files of arbitrary lengths from adding the URL:

silence://<number of seconds>

The sample rate is the same as the other generators, specified in Advanced Preferences.

Re: Foobar 2000 Feature Request

Reply #4
What kode54 mentioned can be used if you want silence only at some specific locations. The DSP I mentioned needs to be enabled on the Preferences -> Playback -> DSP screen. Names listed on the right panel are available DSPs, double clicking one activates it and places it on the left panel. The component works without touching configuration and adds two seconds of silence after each track.

If you wanted to use a DSP with the Converter you would use Converter's Processing menu and enable the DSP there.

Re: Foobar 2000 Feature Request

Reply #5
Ok, I didn't know that I have to double click playback that's why I missed that hidden menu. I think 2 seconds is still short but oh well better than nothing, Thanks for the help.

Re: Foobar 2000 Feature Request

Reply #6
It's not smart to edit posts. Your comment about length could have gone unnoticed had I not accidentally opened this thread again after having read your initial reply.

You can adjust the length under DSP settings in preferences. With older foobars activate the Affix silence DSP and click configure, with 1.4 series just double click it. Once the settings are open type any length you wish.

Re: Foobar 2000 Feature Request

Reply #7
can you make the feature that allow me to find out a unique song list.

I have 10000 nirvana bootleg songs, i want get a list of unique song in foobar2000.

 

Re: Foobar 2000 Feature Request

Reply #8
What is unique song list to you?

There is already built in search function that you can use to filter / find songs by specific criteria.
Somewhere, there's someone dying in a foreign land
Meanwhile, the world is crying stupidity of man
Tell me why, tell me why

Re: Foobar 2000 Feature Request

Reply #9
What is unique song list to you?

There is already built in search function that you can use to filter / find songs by specific criteria.

e.g. songs with unique name?
I have 10000 nirvana songs from bootlegs, i want to get a list of unique songs names.

p.s.
might Author add function for playing songs of the "playlist Search" resilt ?
Play only those songs that is the result of the search

Re: Foobar 2000 Feature Request

Reply #10
add feature
to trim leading/trailing white space permanently from the title of a tag song
e.g. "About A Girl " -> "About A Girl"

Re: Foobar 2000 Feature Request

Reply #11
add feature
to trim leading/trailing white space permanently from the title of a tag song
e.g. "About A Girl " -> "About A Girl"
It's already there. Right click in the properties dialog on the tile and select "Clean up"

Re: Foobar 2000 Feature Request

Reply #12
I wonder why FB2k does not allow the bit rate to be the same as the playback track. My Audio engine D1 and fiio M6 allow 16 44 and 24 44 and 24 48 etc. why cant I set the bit rate to "source" instead of 16 or 24 ?

Re: Foobar 2000 Feature Request

Reply #13
What's the point? There is no audible difference between 16 bit and 16 bit promoted to 24 bit.

Re: Foobar 2000 Feature Request

Reply #14
add feature
to trim leading/trailing white space permanently from the title of a tag song
e.g. "About A Girl " -> "About A Girl"
It's already there. Right click in the properties dialog on the tile and select "Clean up"

oh, thx.
I would not think before.
but, what is doing the "Clean up"?
it trim white space only?

Re: Foobar 2000 Feature Request

Reply #15
has foobar2000 feature that replace symbols?
e.g. [ on (; ] on )?
 "L'amour Est Un Oiseau Rebelle [Jam]" --> L'amour Est Un Oiseau Rebelle (Jam)"

Re: Foobar 2000 Feature Request

Reply #16
has foobar2000 feature that replace symbols?
e.g. [ on (; ] on )?
 "L'amour Est Un Oiseau Rebelle [Jam]" --> L'amour Est Un Oiseau Rebelle (Jam)"
Title-formatting and masstagger
https://wiki.hydrogenaud.io/index.php?title=Foobar2000:Title_Formatting_Reference

Re: Foobar 2000 Feature Request

Reply #17
Any other text is literal text. In literal text, the character %, $, [, ], or ' (apostrophe/single quote) must be escaped by enclosing it in ' (apostrophe/single quote) characters. For example, '[' (a left bracket in single quotes) results in a literal [ (left bracket). As a special case, '' (two single quotes in a row) results in one single quote. In the playlist, < and > are also special; see Dimmed and highlighted text.

$replace(str,search,replace)
Replaces all occurrences of string search in string str with string replace.
Can also be used with an arbitrary number of arguments. Note that $replace(str,search1,replace1,search2,replace2) is generally not the same as $replace($replace(str,search1,replace1),search2,replace2).
Example: $replace(ab,a,b,b,c) → "bc", $replace($replace(ab,a,b),b,c) → "cc"


But it does not work for me: $replace(%title%, ']', ')', '[', '(')


Re: Foobar 2000 Feature Request

Reply #18
It is matching the spaces as well. Just remove the spaces -

Code: [Select]
$replace(%title%,']',')','[','(')


Re: Foobar 2000 Feature Request

Reply #20
add the button for pause/resume the ReplayGain process.