As described here, for example, I'm using FFmpeg to check video file integrity like this:
ffmpeg -v error -i input.mp4 -f null -
Since I plan to run this in the background, I want to limit the CPU load. I already tried -threads 1, -filter_threads 1, -filter_complex_threads 1. Nothing helps and FFmpeg still uses as many cores as it can get. Which parameter am I overlooking?