to_opus: Efficient usage of multiple cores #1
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I recently converted music with this script on a machine with four cores. Only one of the cores was used by the script though.
It might be worthwhile to either add an option to the ffmpeg command that makes it run in multiple threads or split up the workload and run ffmpeg multiple times according to the number of cores.
ffmpeg uses multithreading already as default when possible. So the only solution would be to run ffmpeg multiple times.
https://man.archlinux.org/man/parallel.1
I will implement this in future
Efficient usage of multiple coresto to_opus: Efficient usage of multiple cores