Drew Weymouth

Results 527 comments of Drew Weymouth

Funny timing that you just opened this issue - I just started working on a little personal project which is a command-line CD player using libcdio/paranoia with on-the-fly de-emphasis (taking...

It also might be nice to have a de-emphasis DSP plugin that can apply it on the fly to files as well. But I'd say that's quite lower priority b/c...

Have you looked into using libmpv for the player backend? It should support true gapless playback and the ability to natively play all major audio formats without needing to invoke...

Another possibility to avoid a Python dependency would be to write the backend player in C or C++, and use libffmpeg directly (or keep the approach of invoking the ffmpeg...

OK, a totally new idea - you might be able to stick entirely with Javascript if you use the WebAudio API with the AudioBuffer source, and use one of the...

Does node-mpv play gaplessly? (I haven't tested but it should, as long as the next track is pre-loaded in the playlist b/c it's just using mpv under the hood.) Seems...

Just to clarify, the behavior I'm referring to is different from the current behavior when setting 'Items per page (Albums)' to 0, which loads all albums into the view at...

This should be easy to do with the new mpv player (at least for Subsonic servers) since mpv has replaygain options available https://mpv.io/manual/master/#options-replaygain and most Subsonic servers will preserve the...

This is an old issue but @magrubertone I thought I'd chime in (for you or anyone else) to say that if you want gapless playback, your best bet is to...

Yeah, you might be right, didn't think about WASM, just the standard HTML/JS APIs. Would be a *lot* of work probably because I don't think there's anything like libffmpeg for...