HN user

erdewit

420 karma
Posts3
Comments93
View on HN
[dead] 3 years ago

How the Germans during their Afrika campaign discovered this bacterium to treat dysentery, which was killing more soldiers then the British troops did.

LineageOS 20 4 years ago

I use root to force a 44.1 kHz sample rate for the audio to avoid resampling of my lossless music, which is all in 44.1 kHz. The difference is noticeable even over Bluetooth with aptx(HD).

because a phase-neutral response created in a room is only valid in one point of the room

Author here. The term "phase-neutral" simply means here that the impulse response is symmetrical and doesn't add a phase shift. It doesn't even try to neutralize the phase characteristics of the room, which is what you may be thinking. In fact the phase information from the measurement is completely discarded. Furthermore, the frequency response is averaged to get a more general and robust (less over-fitted) correction that works pretty well across the room. Try it...

When playing FLAC music over aptX HD, the next step for improvement is to avoid any resampling. The music is generally at 44.1 kHz and the default for Android is 48 kHz. It requires root to change the audio config file to 44100, and it's also necessary to change the bluetooth settings (in the developer options).

Something similar goes for Linux.

The resampling shouldn't matter much in theory, but in practice it's pretty noticeable. It seems to be optimized for CPU usage instead of audio quality.

What makes Bitcoin a commodity is that nobody can issue more Bitcoin, other then from mining, just like with physical commodities. The market can still be manipulated by the big players but that is besides the point. When more of an asset can be issued (created from thin air) then it is a security.

It's that the array access of numpy is surprisingly slow compared to a Python list:

  lst = [0]
  %timeit lst[0] = 1
  33.9 ns ± 0.0415 ns per loop (mean ± std. dev. of 7 runs, 10000000 loops each)
  
  arr = np.empty(1, dtype=int)  
  %timeit arr[0] = 1
  73.4 ns ± 0.306 ns per loop (mean ± std. dev. of 7 runs, 10000000 loops each)
OpenSSH 8.9 4 years ago

Another great option is to mount the remote file system with SSHFS.

FLAC 1.3.4 4 years ago

Other lossy compression methods generally happen in the frequency domain and, depending on the type of music, can introduce audible distortions.

This preprocessor on the other hand throws away some of least significant bits to save data. This increases the quantization noise but has no other sort of artifacts. The quantization noise can be dithered to fall in the higher frequencies (noise shaping) and is generally not perceptible.