3/17/2026 at 4:53:55 PM
One of the best open-source tools out there. I'm a frequent user of Plex, Jellyfin, Tunarr, local music files, etc. I use it weekly to extract subtitles, trim videos, convert music formats, and remove audio tracks. After writing the previous paragraph, I realized I've never donated to the project; it's time to change that.by edgarvaldes
3/17/2026 at 5:54:10 PM
It's a lower-level component in so much stuff we're not even aware of.by mihaelm
3/17/2026 at 7:33:06 PM
Yep. Which is a great architecture IMO. Simple, performant and flexible: choose 3by andrew_lettuce
3/18/2026 at 11:11:58 AM
As a FFMPEG API user (e.g. through libavcodec etc.) I would definitely not say "simple". It's constantly breaking stuff and deprecating features from one version to another, and basically requires reading the source constantly to make sure of what's happening and on which backend / API each function can operate. Just today, when I was trying to implement vulkan video decode in ossia score (https://ossia.io) : Copy data to or from a hw surface. At least one of dst/src must have an AVHWFramesContext attached.
int av_hwframe_transfer_data(AVFrame *dst, const AVFrame *src, int flags);
Well unlike what the very first sentence of the comment block hints towards, it actually is only implemented for host<->device copy, not device<->device for many backendsThat said, when it works, it's really great
by jcelerier
3/17/2026 at 7:16:28 PM
FFmpeg is a prime single-block-everything-is-built-on xkcd example.by cybrox
3/17/2026 at 9:27:20 PM
It's a sibling to curl in that wayby comprev
3/17/2026 at 10:50:30 PM
Big difference for ffmpeg especially (but I imagine for curl too): it's not just one guy in Nebraska. Seems to have a very healthy community of devs involved in it.by Carioca
3/18/2026 at 11:09:54 AM
Well, I don't how it is these days, but it hasn't always been describable as "Healthy".by ldng
3/18/2026 at 9:08:23 PM
I guess you guys have never heard of HarfBuzz, huh?by 16000198
3/18/2026 at 4:33:38 AM
> prime single-block-everything-is-built-on xkcdSometimes I wonder if we can vanish one single project out of existence instantly, which one would cause the most chaos.
by 8cvor6j844qw_d6
3/18/2026 at 6:21:01 AM
It looks like the EU compiled a list of contenders.https://interoperable-europe.ec.europa.eu/sites/default/file...
by al_borland