FFmpeg Lands CLI Multi-Threading As Its "Most Complex Refactoring" In Decades (www.phoronix.com)
from starman@programming.dev to programming@programming.dev on 12 Dec 2023 15:01
https://programming.dev/post/7161382

#programming

threaded - newest

autotldr@lemmings.world on 12 Dec 2023 15:05 next collapse

This is the best summary I could come up with:


The long-in-development work for a fully-functional multi-threaded FFmpeg command line has been merged!

FFmpeg is widely-used throughout many industries for video transcoding and in today’s many-core world this is a terrific improvement for this key open-source project.

The patches include adding the thread-aware transcode scheduling infrastructure, moving encoding to a separate thread, and various other low-level changes.

Change the main loop and every component (demuxers, decoders, filters, encoders, muxers) to use the previously added transcode scheduler.

There’s a recent presentation on this work by developer Anton Khirnov.

It’s terrific seeing this merged and will be interesting to see the performance impact in practice.


The original article contains 226 words, the summary contains 103 words. Saved 54%. I’m a bot and I’m open source!

Juujian@lemmy.world on 12 Dec 2023 15:27 next collapse

I’m not sure I understand. I’ve already been running ffmpeg from the command line and it’s been using multiple cores but default. What’s the difference, what’s the new behavior?

supercritical@lemmy.world on 12 Dec 2023 15:40 next collapse

Maybe this?

Every instance of every such component was already running in a separate thread, but now they can actually run in parallel.

gravitas_deficiency@sh.itjust.works on 12 Dec 2023 15:46 collapse

Good old RTFM lol

echo64@lemmy.world on 12 Dec 2023 16:05 collapse

before you could tell an encoder to run multiple threads, but everything outside of the encoder would run effectively single threaded.

now you (should) be able to have all the ffmpeg components, decoder, encoder, filters, audio, video, everything all run parallel

owlboy@lemmy.world on 13 Dec 2023 01:25 collapse

Oooo. Will it be automatic? Or do you need to pass a flag?

chocolatine@lemmy.world on 12 Dec 2023 19:23 collapse

I was using gnu parallel before with ffmpeg. Is this any different and better?

grue@lemmy.world on 13 Dec 2023 18:52 collapse

GNU Parallel allows multi-process, which generally tends to be less efficient than multi-threading. I can’t speak to the specifics of your use vs. FFmpeg’s refactoring, though.