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
2
FLAC / Re: Multithreading
Last post by Replica9000 -
Builds for flaccid git-777a62f6, using libFlac git-31ccd3df.

zip file is for Windows
tgz file is for Linux.

3
Other Lossy Codecs / Re: Index tables for unofficial IMA ADPCM bit depths
Last post by C.R.Helmrich -
Why nobody answered this?
Because there are very few people on this planet reading this forum and knowing how a certain 40-year-old codec works.

Short answer: in audio and speech coding, logarithmic quantizers usually fit the (residual) audio data better than linear quantizers - many small values, few large values. You simply get better perofrmance.

Chris
8
Other Lossy Codecs / Re: Index tables for unofficial IMA ADPCM bit depths
Last post by Klymins -
@Case Codec's are not only required for high-performance computers, they are also required for tiny microcontroller's and etc.. Using a modern codec like MP3 can be very hard or impossible with these tiny MCU's and etc.. So, ADPCM is still required for some low processing power tasks. I'm asking this because i want to use ADPCM with Arduino. Anyway, thanks for recommendation.
9
3rd Party Plugins - (fb2k) / Re: [fb2k v2] SQLite Utilities (foo_sqlite)
Last post by dpc666 -
Well, just to be clear, what I'm thinking of is not to create F2k standard autoplaylists (I know those only work with standard library queries) but rather to automatically fill regular playlists based on SQL queries, without explicit user interaction. The main obstacle I can think of here is the question of how to schedule playlist updates. I don't know how autoplaylists update their contents, and I don't know whether those triggers are also exposed to components, or whether that would even be practical given the performance limitations of SQL requests.
But exactly your request is present on my playlist manager, in "Smart Playlists", and they are updated on real time whenever the source changes. In this case they use other playlists as source, and apply a query on them. Such special playlist may also be locked by the component, so it can only be changed by it, whether on demand or by any callback.

Oh, I wasn't sure what they do, but I read something in the release notes about support for foo_sqlite stuff. So I guess that's what they're for. I'll take a look in the docs.

Hmm I looked at the docs and it doesn't seem like XSP queries as described there are nearly as powerful as SQL queries. I'm mainly using SQL queries for contextual queries, i.e. using the "OVER" operator to get statistical max(), min(), sum() etc. values from previously defined sets of tracks (especially artists and albums). Apart from the ability of XSP to use playlists as pools (which would require me to generate absurd numbers of playlists) it doesn't sound like smart playlists can do that sort of stuff. Is there another way to dynamically generate pools independently of playlists, analogously to partitions in SQL? Is there a more extensive documentation of XSP queries somewhere that I can refer to?