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
42
Audio Hardware / Re: Question in-ears magnetic driver
Last post by fooball -
Are the dual magnetic dynamic drivers of these in-ears very resistant to demagnetization and magnetic losses unlike 2.5" HDDs? To demagnetize or have magnetic losses of these dual magnetic drivers of these in-ear headphones, what power would be necessary? And what power does a 29" CRT have because it has coils and speakers?
What do HDDs have to do with this?  The material in a HDD is DESIGNED to be magnetised and demagnetised, so it is hardly surprising if external magnetic fields are able to erase them.

Why are you asking these pointless questions?  The short answer is you don't need to worry.
45
FLAC / Re: Multithreading
Last post by Porcus -
Ran a few on my full 38 CDs during the week-end to check for "not-outrageously-expensive" improvements over -7/-8 - if nothing else, to get an idea against the Exact Rice build, and on a different computer than my usual. Not rigorously timed.

TL;DR: flaccid beat -8p soundly. The following setting was only a little bit slower, and its 0.22 percent improvement over stock -8 is three times what -8p could show for itself.
--mode gasc --blocksize-limit-lower 2304 --tweak 64 --queue 16 --merge 0 --analysis-comp 6 --output-comp 8

(But, hrmph, flaccid chokes on non-ASCII filenames.)


So, what I ran - presented as kB per extra second to get you what fruits are lower-hanging. Stock 1.5.0 first:
-5 as "baseline": took 6 minutes, 12 032 megabytes.
-7: Took 143 more seconds, 11 974 megabytes. That means -7 did save 407 kB per extra second run, relative to -5.
-8: Relative to -7, it saved 41 kB per extra second run. So here the returns are diminishing quickly already.

Where to go from -8? The above flaccid in "gasc" mode.
15 kB per extra second over reference -8, against -8p's measly 6.


Also tried:
  • @Wombat's "Exact Rice" build. At -8 it saved 0.02 percent over the Xiph build. That did amount to a not-at-all-bad 13 kB per ekstra second
  • -8 -A "subdivide_tukey(4)", beefing that one up. About the same as the Exact Rice build, both in time and size (loses narrowly to it due to the classical music). I did not do that setting with the Exact Rice.
  • -8r7, -8pr7 in the Xiph build and the "Exact Rice" build: surprisingly little. Especially surprising especially on the heavier corpus where that fine partitioning is often used - but not so much saved from it. Hardly any difference at classical music. Overall only 3 kB/s saved at -8 (Xiph), and much less at -8p and at Exact Rice.
  • Any synergies between Exact Rice and -p? No. Even less than previous line.  Exact Rice's -8p is slow. 
  • Heavier flaccid: 40 percent more time than the one above, did improve but very little.  --mode peakset --blocksize-list 2304,4608 --analysis-comp 5 --output-comp 8r7  --queue 32 --tweak 32 --merge 0
  • Lighter flaccid: just a little bit faster than the gasc above, and not far worse, was --mode chunk --blocksize-list 2304,4608 --tweak 0 --merge 0 --analysis-comp 8 --output-comp 8r7

47
General Audio / Re: Need some advice on resampling 192Khz/32bit float.
Last post by Raven1 -

[Thanks! Any opinion on noise shaping?
Some years back i played around with noise shaping and found the shibata shapes indeed sounding very pleasant to my ears when amplified. There must be some samples in the upload section.
I checked many years on many recordings if it is worth to apply but all the music i seem to listen never needs full 16 bits leave alone needing it noise shaped.
For the sake of doing at least something to lower the possibility of perceived noise i now use the sloped dither inside SoX with dither -S -a.
I think I have enough information now to start redoing my collection, thank you!
50
General - (fb2k) / title formatting for substitutions within strings
Last post by Albicocche -
Hi.

Let's say that in the string "Just a little bit more louder than before" I want to change all the "a"s to the character "z", all the "e"s to the character "w" and all the "o"s to the character "x". The best solution I've found so far is:

Code: [Select]
$replace($replace($replace(Just a little bit more louder than before,a,z),e,w)o,x)

That is, I should nest a $replace() statement for each of the substitutions I want to make to the same string.

Is there a more elegant and readable way to do this?

(In some strings for the foo_run component I had to nest even 5 $replace() statements inside each other, but this solution is neither readable nor maintainable).