this post was submitted on 12 Dec 2023
189 points (100.0% liked)

Programming

16240 readers
180 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Juujian 25 points 6 months ago (2 children)

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 65 points 6 months ago (1 children)

Maybe this?

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

[–] [email protected] 16 points 6 months ago

Good old RTFM lol

[–] echo64 31 points 6 months ago (1 children)

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 8 points 6 months ago

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