I was listening to the New Year’s Day concert by the Vienna philharmonic and wondered who one of the composers was so used a popular song recognition app. (I expected it would make some fuzzy match on the piece and give me the name + composer). To my amazement it did give the name and composer but as played by the Vienna philharmonic in 2005 in the same location. The orchestra does not have the same members as 19 years ago, nor was it the same conductor, so it seemed the piece was matched on the acoustics of the Musikverein where they were playing, which I found astonishing.

    • fool@programming.dev
      link
      fedilink
      English
      arrow-up
      10
      ·
      edit-2
      6 days ago

      Even more magical is the lossless Zstandard is this a name drop?. It does so much stuff, it’s awesome!

      • hella fast compared to similar-leveled compressors (zoom)
      • no matter the zstd compression level, decompression takes equal time! (ux!)
      • zstd can use a user-given dictionary, or train its own on a sample set (wowie)
      • zstd can be used for live compression (compress and decompress as you read and write, not before or after)
        • on ram (install more ram??)
        • in filesystems (2.5x your disk??)
        • saves CPU by not compressing if it’s not worth it (efficiency!!)
      • use ALL the cores!

      So kool. lol

    • CookieOfFortune@lemmy.world
      link
      fedilink
      English
      arrow-up
      9
      ·
      edit-2
      6 days ago

      Honestly the lossy compression algorithms are some real magic. The way video can be streamed over wireless networks at all is pretty astonishing and requires many orders of magnitude of compression.

      If you ever have time, read up on how JPEG compression works.